{% extends "base.html" %} {% block title %}Debug permissions{% endblock %} {% block extra_head %} {% endblock %} {% block nav %}

home

{{ super() }} {% endblock %} {% block content %}

Recent permissions checks

{% for check in permission_checks %}

{{ check.action }} checked at {{ check.when }} {% if check.result %} {% else %} {% endif %} {% if check.used_default %} (used default) {% endif %}

Actor: {{ check.actor|tojson }}

{% if check.resource %}

Resource: {{ check.resource }}

{% endif %}
{% endfor %} {% endblock %}