{% extends "layout.html" %} {% block content %}
Audit Events
{{ summary.total }}
Dashboard management actions captured in memory
Succeeded
{{ summary.succeeded }}
Completed admin actions
Failed
{{ summary.failed }}
Actions rejected or not found
Warnings
{{ summary.warning }}
Actions completed with scheduler warnings

Audit Filters

Dashboard actions separate from task execution history
Reset

Events

Most recent actions first
{% if not rows %} {% else %} {% for row in rows %} {% endfor %} {% endif %}
Time Action Target Message Status
No audit events match the current filters.
{{ row.created_at_label }}
{{ row.actor }}
{{ row.action_label }}
{{ row.event_id }}
{{ row.target_id or '-' }}
{{ row.target_type }}
{{ row.message or '-' }} {% if row.status == "succeeded" %} {{ row.status_label }} {% elif row.status == "warning" %} {{ row.status_label }} {% else %} {{ row.status_label }} {% endif %}
{% endblock %}