{% extends "base.html" %} {% block title %}App Access Permissions - AppManager{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

App Access Permissions Matrix

Manage which users have access to specific installed Flask sub-apps

← Back to Admin Dashboard
{% if users and apps %}
{% for app in apps %} {% endfor %} {% for u in users %} {% for app in apps %} {% set is_checked = perms_map.get((u.id, app.id), True) %} {% endfor %} {% endfor %}
User / Email Role
{{ app.name }}
/apps/{{ app.slug }}
{{ u.name or u.email }}
{{ u.email }}
{{ u.role }} {% if u.is_admin() %} Full Access (Admin) {% else %} {% endif %}
{% else %}

You need both registered users and installed sub-apps to manage permissions.

{% endif %}
{% endblock %}