{% extends 'base.html' %} {% load static %} {% block title %}Default Role Permissions{% endblock %} {% block content %}

Default Role Permissions

Configure default permissions for each staff role. These will be automatically applied to new staff members.

{% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %}
{% for role in staff_roles %}
{% csrf_token %}

{{ role|title|replace:"_":" " }} Default Permissions

|

These permissions will be automatically assigned to new {{ role|title|replace:"_":" " }} users.

{% for module_choice in modules %} {% with module=module_choice.0 module_name=module_choice.1 %}

{{ module_name }}

|
{% for action_choice in actions %} {% with action=action_choice.0 action_name=action_choice.1 %} {% endwith %} {% endfor %}
{% endwith %} {% endfor %}
{% endfor %}

Bulk Actions

{% endblock %}