{% extends "base.html" %} {% block title %}Role Permissions Management{% endblock %} {% block head %} {% endblock %} {% block content %}
Configure granular access permissions for each role in the system
| 👤 Role Name | 🏢 Module Name | 📄 Page Name | ⚙️ Functions & Permissions |
|---|---|---|---|
|
{{ role_data.display_name }} (Level {{ role_data.level }})
|
|||
|
{{ page_data.name }}
|
|||
|
👤
{{ role_data.display_name }}
|
{{ page_data.name }} |
📋
{{ section_data.name }}
|
{% for action in section_data.actions %}
{% set permission_key = page_key + '.' + section_key + '.' + action %}
{{ action_names[action] }}
{% endfor %}
|