{% extends "admin/base_site.html" %} {% load i18n static audit_tags %} {% 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|default:"–" }} {{ log.context.metadata.source|default:"–" }} {{ log.context.metadata.change_reason|default:"–" }} {% with changes=log.diff|changed_fields %} {% if changes %}
View ({{ changes|length }})
    {% for field, change in changes.items %}
  • {{ field }}: {{ change.old|default_if_none:"∅" }} {{ change.new|default_if_none:"∅" }}
  • {% endfor %}
{% else %}–{% endif %} {% endwith %}
No audit records found.
{% endblock %}