{% extends "base.html" %} {% block title %}Audit Log — {{ library_name() }}{% endblock %} {% block content %}

Audit Log

{% if entries %}
{% for e in entries %} {% endfor %}
Time (UTC) Actor Type ID Action Details
{{ e.occurred_at.strftime("%Y-%m-%d %H:%M") }} {{ e.actor_label or "—" }} {{ e.entity_type }} {{ e.entity_id if e.entity_id is not none else "—" }} {{ e.action }} {% if e.details %}{{ e.details | tojson }}{% else %}—{% endif %}
{% else %}

No audit entries match the current filter.

{% endif %} {% endblock %}