{% extends "layout.html" %} {% block title %}Roles & Permissions – {{ admin_title }}{% endblock %} {% block content %}

Roles & Permissions

Predefined roles and their permissions on each entity.

{% for role in roles %}

{{ role.role_label }}

{% for entity in role.entities %} {% endfor %}
Entity View Create Edit Delete
{{ entity.label }} {% if entity.view %}{% else %}{% endif %} {% if entity.create %}{% else %}{% endif %} {% if entity.edit %}{% else %}{% endif %} {% if entity.delete %}{% else %}{% endif %}
{% endfor %}
{% endblock %}