{% if user.avatar_id -%}
{% endif -%}

{{ _('Instance') }}: {{ user.instance_domain() }} {% if user.is_instance_admin() or (user.is_local() and user.is_admin()) %}({{ _('Admin') }}){% endif %}
{% if user.is_admin() or user.is_staff() %}{{ _('Role permissions') }}: {% if user.is_admin() %}{{ _('Admin') }}{% endif %} {% if user.is_staff() %}{{ _('Staff') }}{% endif %}
{% endif %} {{ _('Joined') }}: {{ arrow.get(user.created).humanize(locale=locale) }}
{% if current_user.is_authenticated and current_user.is_admin() %}{{ _('Referer') }}: {{ user.referrer if user.referrer }}
{% endif %} {% if current_user.is_authenticated and current_user.is_admin() %}{{ _('IP and country code') }}: {{ user.ip_address if user.ip_address }}{% if user.ip_address_country %} ({{ user.ip_address_country }}){% endif %}
{% endif %} {% if current_user.is_authenticated and current_user.is_admin() and user.last_seen %}{{ _('Active') }}: {{ arrow.get(user.last_seen).humanize(locale=locale) }}
{% endif %} {% if user.bot %} {{ _('Bot Account') }}
{% endif %} {{ _('Attitude') }}: {% if user.attitude %}{{ (user.attitude * 100) | round | int }}%{% endif %}
{% if current_user.is_authenticated and current_user.is_admin() and user.reputation %}{{ _('Reputation') }}: {{ user.reputation | round | int }}
{% endif %} {{ _('Posts') }}: {{ user.post_count }}
{{ _('Comments') }}: {{ user.post_reply_count }}
{% if current_user.is_authenticated %}{{ _('Note') }}: {{ user.get_note(current_user) }}
{% endif %}

{{ user.about_html|safe }}
{% if user.extra_fields -%}
    {% for field in user.extra_fields -%}
  • {{ field.label }}
    {% if field.text.startswith('http') -%} {{ field.text }} {% else -%} {{ field.text }} {% endif -%}

  • {% endfor -%}
{% endif -%}