{% extends "admin/base.html" %}
{% block title %}Audit log{% endblock %}
{% block content %}
Every content change, newest first. Times are UTC.Audit log
| 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 '' }} |