- ID
- {{ user.id }}
- UUID
- {{ user.uuid }}
- Name
- {{ user.realname }}
- E‑mail
- {{ user.email }}
{% if user.accepted_email and user.email != user.accepted_email %}
- Initially accepted e‑mail
- {{ user.accepted_email }}
{% endif %}
{% if user.email_change_is_pending %}
- E‑mail pending verification
- {{ user.emailchanges.all.0.new_email_address }}
- E‑mail change requested at
- {{ user.emailchanges.all.0.requested_at }}
{% endif %}
- Status
- {{ user.status_display|upper }}
- Groups
- {{ user|get_groups }}
{% if user.date_signed_terms %}
- Signed terms at
- {{ user.date_signed_terms }}
{% endif %}
{% if user.verified_at %}
- Verified at
- {{ user.verified_at }}
{% endif %}
{% if user.activation_sent %}
- Activation sent at
- {{ user.activation_sent }}
{% endif %}
{% if user.moderated_at %}
- Moderated at
- {{ user.moderated_at }}
- Moderation policy
- {{ user.accepted_policy }}
{% endif %}
{% if user.rejected_reason %}
- Rejection reason
- {{ user.rejected_reason }}
{% endif %}
{% if user.deactivated_at %}
- Deactivated at
- {{ user.deactivated_at }}
- Deactivation reason
- {{ user.deactivated_reason }}
{% endif %}
- Last profile update at
- {{ user.updated }}
- Last logged-in
{% for auth in user.auth_providers.all %}
- {{ auth.module }} : {{ auth.last_login_at|default:"-"}}
{% endfor %}
- Unused
- {{ user|show_auth_providers:"available" }}
- Enabled
- {{ user|show_auth_providers:"enabled" }}
- Disabled
- {{ user|show_auth_providers:"disabled" }}
{% for auth in user.auth_providers.all %}
{% if auth.identifier %}
- Identifier
- {{ auth.identifier }}
{% endif %}
{% if auth.info_eppn %}
- EPPN
- {{ auth.info_eppn }}
{% endif %}
- Created
- {{ auth.created|default:"-" }}
- Last login
- {{ auth.last_login_at }}
{% with info=auth.info %}
{% if info %}
{% endif %}
{% endwith %}
{% endfor %}