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

Users & Roles

Manage Killian accounts, role assignments, organization access, and MFA enrollment.

New user {% if can_manage_roles %} Manage Roles {% endif %} Manage Users
{% for role in roles_summary %}
{{ role.name }} {{ role.user_count }} user{{ role.user_count|pluralize }}
{{ role.description|default:'No role description has been entered.' }} {% if role.is_protected %}Built-in role{% else %}Custom role{% endif %}
{% empty %}
No roles are configured.
{% endfor %}
Actions
{% for row in user_rows %}
N: {{ row.user.get_full_name|default:row.user.username }}
E: {% if row.user.email %}{{ row.user.email }}{% else %}No email address{% endif %}
U: {{ row.user.username }}
{{ 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 %}