{% extends 'core/base.html' %} {% block title %}Manage Users | Killian{% endblock %} {% block content %}

Manage Users

Permanently remove Killian user accounts. This action cannot be undone.

Back to Users New user
Permanent deletion Deleting a user removes the account, role assignment, organization memberships, MFA enrollment, and other records that are configured to cascade with the user. Historical audit and documentation records configured to retain attribution will remain with the user reference cleared where appropriate.
Delete
{% for row in user_rows %}
{{ row.user.username }} {% if row.user.get_full_name %} {{ row.user.get_full_name }} {% elif row.user.email %} {{ row.user.email }} {% else %} No profile details {% endif %}
{{ row.role }}
{% if row.all_organizations %} All organizations {% else %} {% for membership in row.organizations %} {{ membership.organization.name }} {% empty %} No organizations assigned {% endfor %} {% endif %}
{% if row.user.is_active %} Active {% else %} Disabled {% endif %}
{% empty %}
No users found.
{% endfor %}
{% endblock %}