{% load i18n pretty_money perms %}
{% trans 'name'|capfirst %}, {% trans 'first name' %}
{{ user_object.last_name }} {{ user_object.first_name }}
{% trans 'username'|capfirst %}
{{ user_object.username }}
{% if user_object.pk == user.pk %}
{% trans 'password'|capfirst %}
{% trans 'Change password' %}
{% endif %}
{% trans 'aliases'|capfirst %}
{% trans 'Manage aliases' %} ({{ user_object.note.alias.all|length }})
{% if "member.view_profile"|has_perm:user_object.profile %}
{% trans 'section'|capfirst %}
{{ user_object.profile.section }}
{% trans 'email'|capfirst %}
{{ user_object.email }}
{% trans 'phone number'|capfirst %}
{{ user_object.profile.phone_number }}
{% trans 'address'|capfirst %}
{{ user_object.profile.address }}
{% if user_object.note and "note.view_note"|has_perm:user_object.note %}
{% trans 'balance'|capfirst %}
{{ user_object.note.balance | pretty_money }}
{% trans 'paid'|capfirst %}
{{ user_object.profile.paid|yesno }}
{% endif %} {% endif %}
{% if user_object.pk == user.pk %}
{% trans 'API token' %}
{% endif %}