{% load i18n %} {% if 'user_admin' in user %} {% endif %} {% if 'is_active' in user %} {% endif %}
{% trans 'Table of user’s details' %}
{% trans 'Username' %} {{ user.username }}
{% trans 'First name' %} {{ user.first_name }}
{% trans 'Last name' %} {{ user.last_name }}
{% trans 'Email' %} {{ user.email }}
{% trans 'Can manage other users' %} {{ user.user_admin|yesno|capfirst }}
{% trans 'Can log in' %} {{ user.is_active|yesno|capfirst }}