{% extends "base.html" %} {% block title %}Admin Permissions{% endblock %} {% block nav_permissions %}active{% endblock %} {% block content %}
{% for row in user_data %} {% empty %} {% endfor %}
Admin User Email Access Mode Modules Configured Action
{{ row.user.get_full_name }}
{{ row.user.email }} {% if row.is_restricted %} Restricted {% else %} Full Access {% endif %} {% if row.is_restricted %} {{ row.perm_count }} / {{ total_modules }} modules configured {% else %} All modules (unrestricted) {% endif %} Manage
No admin users found. Create an admin account first.
How it works: By default, admin users have full access to all modules. Once you configure restrictions for a user, they can only access the modules and actions you explicitly allow. Super Admins always have full access and are not shown here.
{% endblock %}