{% load i18n %}
{% trans "Name" %}
{{ user.name }}
{% trans "ID" %}
{{ user.id }}
{% if domain_name %}
{% trans "Domain Name" %}
{{ domain_name }}
{% endif %}
{% trans "Domain ID" %}
{{ user.domain_id }}
{% trans "Description" %}
{{ user.description|default:_("-") }}
{% trans "Email" %}
{{ user.email|default:_("-") }}
{% trans "Enabled" %}
{{ user.enabled|yesno|capfirst }}
{% trans "Password Expires At" %}
{{ user.password_expires_at }}
{% trans "Lock password" %}
{{ lock_password|yesno:"yes,no"|capfirst }}
{% trans "Primary Project" %}
{% if user.project_id %}
{{ project_name|default:user.project_id }}
{% else %}
{% trans "-" %}
{% endif %} {% if extras %} {% for key, value in extras.items %}
{{ key }}
{{ value }}
{% endfor %} {% endif %}