{% 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.user }}
{{ entry.request_ip }}
{{ entry.app|default:'-' }}
{% endfor %}
{% include 'partials/pagination.html' %}
{% endblock %}