{% extends "base.html" %} {% block title %}Permissions for {{ database_name }}/{{ table_name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Permissions for {{ database_name }}/{{ table_name }}

Back to table

{% if groups %}

Groups

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

Users

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

{% if audit_log %}

Audit history

{% for entry in audit_log %} {% endfor %}
Date and time Operation by Operation Group User Action
{{ entry.timestamp }} {{ entry.operation_by }} {{ entry.operation }} {{ entry.group_name or '' }} {{ entry.actor_id or '' }} {{ entry.action_name }}
{% endif %} {% endblock %}