{% extends "admin/base.html" %} {% block title %}Audit log{% endblock %} {% block content %}

Audit log

Every content change, newest first. Times are UTC.

← Dashboard
Filter {% set actions = [('', 'All actions'), ('create','create'), ('update','update'), ('delete','delete')] %} {% for val, label in actions %} {{ label }} {% endfor %} · {% set entities = [('', 'All types'), ('section','section'), ('topic','topic'), ('demo','demo')] %} {% for val, label in entities %} {{ label }} {% endfor %}
{% if entries %}
{% for e in entries %} {% endfor %}
When (UTC) Actor Action Type ID Detail
{{ e.created_at.strftime('%Y-%m-%d %H:%M:%S') if e.created_at else '—' }} {{ e.actor or '—' }} {{ e.action }} {{ e.entity }} {{ e.entity_id if e.entity_id is not none else '—' }} {{ e.detail or '' }}
{% if pagination.pages > 1 %} {% endif %} {% else %}
No audit entries{{ ' for this filter' if action or entity }}.
{% endif %} {% endblock %}