{% extends "base.html" %} {% block title %}{{ managed.display_name }} · Users · auth-ingress{% endblock %} {% block content %}

← Users

User management

{{ managed.display_name }}

{{ managed.email }} · {{ managed.status }}{% if managed.is_admin %} · Administrator{% endif %}

{% if error %}{% endif %} {% if message %}
{{ message }}
{% endif %} {% if preview %}

Preview changes

{{ preview.message }}

{% if preview.operation == 'membership_set' %}

Groups added: {{ preview.changes.groups_added|join(', ') or 'None' }}. Groups removed: {{ preview.changes.groups_removed|join(', ') or 'None' }}.

{% for group in groups %}{% if group.id in preview.changes.groups_added or (group.id in memberships|map(attribute='id')|list and group.id not in preview.changes.groups_removed) %}{% endif %}{% endfor %}
{% elif preview.operation == 'user_update' %}
{% if preview.changes.is_admin %}{% endif %}
{% elif preview.operation == 'user_status' %}
{% elif preview.operation == 'user_delete' %}

This permanently removes the user account. Audit history is retained, but the user will not be able to sign in again.

{% elif preview.operation == 'password_reset' %}
{% endif %}
{% endif %}

Group memberships

{% for group in groups %}{% endfor %}

Effective service access

{% for access in effective_access %}

{{ access.display_name }}

{% if access.currently_usable %}Usable{% else %}Not usable{% endif %} · Groups: {{ access.granting_groups|join(', ') or 'None' }}

{% else %}

No services configured.

{% endfor %}

Update profile

Account lifecycle

Deactivate is the reversible disable account path. Permanent removal hard-deletes the user account.

{% endblock %}