{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrahead %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
{% if log_entries %}
{% for entry in log_entries %} {% include "auditlog/entry_detail.html" with entry=entry %} {% endfor %}
{% if pagination_required %} {% include "auditlog/pagination.html" with page_obj=log_entries page_var=page_var %} {% endif %} {% else %}

{% trans 'No log entries found.' %}

{% endif %}
{% endblock %}