{% extends "base.html" %} {% block title %}Permissions for {{ resource_type }}: {{ parent }}{% if child %}/{{ child }}{% endif %}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Permissions

{{ resource_type }}

Resource {{ parent }}{% if child %}/{{ child }}{% endif %}

{% if groups %}

Groups

{% for group in groups %}
{% endfor %}
{% endif %}

General access

{% for principal, label in public_principals.items() %}
{% endfor %}

Users

{% if user_permissions %}
{% for user in user_permissions %}
{% endfor %}
{% else %}

No user-specific permissions yet.

{% endif %}

Add a user

{% if valid_actors %} {% else %} {% endif %}

{% if audit_log %}

Audit history

{% for entry in audit_log %} {% endfor %}
Date and time Operation by Operation Principal Action
{{ entry.timestamp }} {{ entry.operation_by }} {{ entry.operation }} {% if entry.principal_type == 'group' %}{{ entry.group_name }} (group){% elif entry.principal_type in public_principals %}{{ public_principals[entry.principal_type] }} (general access){% else %}{{ entry.actor_id or '' }}{% endif %} {{ entry.action_name }}
{% endif %}
{% endblock %}