{% extends "admin/base_site.html" %} {% load i18n %} {% block title %}Audit records | {% trans "Site administration" %}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Audit records









Clear {% if export_querystring %} Export CSV {% else %} Export CSV {% endif %}
{% if audit_page %}

Showing {{ audit_page.items|length }} of {{ total }} record{{ total|pluralize }}. Page {{ page }} of {{ num_pages }}.

{% for record in audit_page.items %} {% empty %} {% endfor %}
ID Created at Organization Action Actor type Actor ID Subject type Subject ID Has diff
{{ record.id }} {{ record.created_at|date:"Y-m-d H:i:s" }} {{ record.scope.scope_key|default:'-' }} {{ record.action_key }} {{ record.actor.identity_type }} {{ record.actor.identity_label|default:record.actor.identity_key|default:"-" }} {{ record.subject.subject_type }} {{ record.subject.subject_id }} {% if record.diff %}Yes{% else %}No{% endif %}
No audit records found.

{% if has_prev %} « Previous {% else %} « Previous {% endif %}   Page {{ page }} of {{ num_pages }}   {% if has_next %} Next » {% else %} Next » {% endif %}

{% else %}

Repository not available.

{% endif %} {% endblock %}