{% extends "layouts/dashboard.html" %} {% load i18n %} {% block title %}Permissions: {{ group.name }} — IILMP{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %} {% with selected_count=selected_ids|length %} {% blocktranslate count counter=selected_count asvar role_perm_subtitle %}{{ counter }} permission currently granted to this role.{% plural %}{{ counter }} permissions currently granted to this role.{% endblocktranslate %}
{% include "components/page_header_text.html" with eyebrow="Edit role permissions" title=group.name subtitle=role_perm_subtitle size="lg" with_glyph=False %} Back to roles
{% endwith %} {% include "components/rims_page_intro.html" with eyebrow="Edit role permissions" heading="Tick what every member of this role should be able to do." description="Saving replaces the group's full permission set. Existing accounts in this role pick up the change on their next request — no re-login required. Use the search box to narrow the list across all installed apps." %} {% if permission_groups %}
{% csrf_token %}
Cancel
{% for grp in permission_groups %}
{% for p in grp.perms %} {% endfor %}
{% endfor %}
{% else %}

Nothing to configure.

No permissions are installed in this database yet. Run migrations and ensure Django's auth tables are populated before editing role groups.

{% endif %} {% if permission_groups %} {% endif %} {% endblock %}