{% extends 'core/base.html' %} {% block title %}{{ role.name }} Permissions | Killian{% endblock %} {% block content %}

{{ role.name }} Permissions

Configure what members of this role will be allowed to do in Killian.

Edit Role Back
Role
{{ role.name }}
Assigned Users
{{ assigned_users|length }}
Granted Permissions
{{ granted_count }} / {{ total_permissions }}
Permission changes affect every user assigned to this role.
Superusers always retain full recovery access regardless of this matrix. Role and Permission Management themselves remain superuser-only and cannot be delegated through these checkboxes.
{% csrf_token %} {% for section in permission_sections %}
{{ section.label }} {% if section.kind == 'module' %}
{% for permission in section.permissions %} {% endfor %}
{% else %}
{% for permission in section.permissions %} {% endfor %}
{% endif %}
{% endfor %}
{% if role.system_key %} {% endif %} Cancel
{% if assigned_users %}

Assigned Users

These accounts will use this role's permission set.
{% for item in assigned_users %}
{{ item.username }}
{{ item.get_full_name|default:item.email|default:'No profile details' }}
Edit user
{% endfor %}
{% endif %} {% endblock %}