{% extends "_layout.html" %} {% set active = "audit" %} {% block title %}beaver-gateway · audit{% endblock %} {% block content %}

Audit log

{% if audit %} {% for row in audit %} {% endfor %}
TimeActorKindAgentDetail
{{ row.ts | fmt_dt }} {{ row.actor }} {{ row.kind }} {{ row.agent_name or "—" }} {{ row.detail_json | fmt_detail }}

{% if next_before %} Older entries → {% else %} End of log. {% endif %}

{% else %}

Nothing logged yet.

{% endif %}
{% endblock %}