{% extends "base.html" %} {% block title %}Audit Log — Admin{% endblock %} {% block content %}
{% if entries %} {% for entry in entries %}
{{ entry.timestamp.strftime('%Y-%m-%d %H:%M') }} {{ entry.user_email or ('#' + entry.user_id|string) }} {{ entry.action }} {{ entry.model_name }} {{ entry.object_repr or entry.object_id }}
{% endfor %} {% else %}

No entries found

No audit entries match the current filters.

{% endif %}
{% if total > per_page %} {% endif %} {% endblock %}