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

Permission Management

Control the Killian application capabilities granted to each role.

Roles Users Administration
Safe rollout
Permission definitions and role grants are now managed here. Superusers always bypass the permission matrix so a role configuration cannot lock the platform owner out of recovery.

Roles

{{ total_permissions }} Killian permissions are available per role.
Role Description Users Permissions Actions
{% for row in permission_rows %}
{{ row.role.name }}
{% if row.role.is_protected %}Built-in{% else %}Custom{% endif %}
{{ row.role.description|default:'No description' }}
{{ row.user_count }}
{{ row.granted_count }} / {{ row.total_permissions }}
Manage permissions
{% empty %}
No roles found.
{% endfor %}
{% endblock %}