{% extends "administration/base.html" %} {% load i18n %} {% load utils %} {% block title %} {% title %} {% endblock %} {% block content %}

{% trans "Audit Log" %}

{% for entry in object_list %}
{{ entry.action }}
{{ entry.context }}
{{ entry.user }}
{{ entry.app|default:'-' }}
{{ entry.created }}
{{ entry.request_ip }}
{% endfor %} {% include 'partials/pagination.html' %}
{% endblock %}