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

Role Management

Create and manage Killian roles. Each role is linked to a Django Group and has an independently managed Killian permission set.

New role Permissions Users Administration

Roles

Built-in roles are protected; custom roles can be renamed or deleted after all users are reassigned.
Role Description Users Type Actions
{% for role in roles %}
{{ role.name }}
{{ role.description|default:'No description' }}
{{ role.user_count }}
{% if role.is_protected %} Built-in {% else %} Custom {% endif %}
Edit Permissions {% if not role.is_protected %} Delete {% endif %}
{% empty %}
No roles found.
{% endfor %}
Permission Management enabled
Each role's Killian permissions are stored on its linked Django Group. Use Permission Management to configure application capabilities without changing role identity or user assignments.
{% endblock %}