{% import "macros.jinja" as macros %}
{% if current_page == 'moderation-panel' %}
{% set user_link = '/moderation?viewing=user&username=' + crab.username %}
{% else %}
{% set user_link = '/user/' + crab.username %}
{% endif %}
{% if crab != current_user and current_user and not crab.is_blocked_by(current_user) %}
{% endif %}
{{crab.display_name}}
{% if crab.verified %}
{{macros.verified(17)}}
{% endif %}
@{{crab.username}}
{% if current_user in crab.following and not hide_description %}
{% if spooky_mode %}
Haunts you
{% else %}
Follows you
{% endif %}
{% endif %}
{% if not hide_description %}
{{crab.description}}
{% endif %}
{% if current_page == 'moderation-panel' %}