{% extends g.theme.master %} {% block extra_css %} {% endblock %} {% block title %}{{c.project.name}} / {{app.config.options.mount_label}} / Permissions{% endblock %} {% block header %}{{app.config.options.mount_point}} Permissions{% endblock %} {% block content %} {% if not (app.permissions and allow_config) %} You are not allowed to edit permissions for {{app.config.options.mount_point}}. {% else %}
{% for p in app.permissions %}

{{p}}

{% for role in h.make_roles(app.config.acl.get(p, [])) %} {% endfor %}
Role
{{role.display()}}
{% if role.display() != '*user-'+c.user.username %} {% endif %}
{% endfor %}
{%endif%} {% endblock %} {% block extra_js %} {% endblock %}