|
{% trans 'Name' %}: |
{{ object.name }} |
{% trans 'Username' %}: |
{{ object.username }} |
{% trans 'Email' %}: |
{{ object.email }} |
{% if user.phone %}
{% trans 'Phone' %}: |
{{ object.phone }} |
{% endif %}
{% if object.wechat %}
{% trans 'Wechat' %}: |
{{ object.wechat }} |
{% endif %}
{% trans 'Role' %}: |
{{ object.org_role_display }} |
{% trans 'MFA' %}: |
{% if object.mfa_force_enabled %}
{% trans 'Force enabled' %}
{% elif object.mfa_enabled%}
{% trans 'Enabled' %}
{% else %}
{% trans 'Disabled' %}
{% endif %}
|
{% trans 'Source' %}: |
{{ object.get_source_display }} |
{% trans 'Date expired' %}: |
{{ object.date_expired|date:"Y-m-j H:i:s" }} |
{% trans 'Created by' %}: |
{{ object.created_by }} |
{% trans 'Date joined' %}: |
{{ object.date_joined|date:"Y-m-j H:i:s" }} |
{% trans 'Last login' %}: |
{{ object.last_login|date:"Y-m-j H:i:s" }} |
{% if object.can_update_password %}
{% trans 'Last password updated' %}: |
{{ object.date_password_last_updated|date:"Y-m-j H:i:s" }} |
{% endif %}
{% trans 'Comment' %}: |
{{ object.comment }} |