{% extends "admin/base_site.html" %} {% load i18n static %} {% block content %}

{{ title }}

{% if is_paginated %}
{% if page_obj.has_previous %} « Previous {% endif %} Page {{ page_obj.number }} of {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next » {% endif %}
{% endif %} {% for log in audit_logs %} {% empty %} {% endfor %}
Changed At Operation User Source Reason Diff
{{ log.changed_at }} {{ log.operation }} {{ log.user_id }} {{ log.source }} {{ log.change_reason|default:"–" }}
View
{{ log.diff|default:"–" }}
No audit records found.
{% endblock %}