{% extends "base.html" %} {% block title %}Audit Log — Steward{% endblock %} {% block content %}

Audit Log

{% if action_filter %} Clear {% endif %}
{% if events %}
{% for item in events %} {% set e = item.event %} {% set d = item.detail %} {% endfor %}
Time (UTC) User Action Entity Detail
{{ e.timestamp.strftime("%Y-%m-%d %H:%M:%S") }} {{ e.username }} {% set cat = e.action.split('.')[0] %} {{ e.action }} {% if e.entity_type %} {{ e.entity_type }}/{{ e.entity_id or "" }} {% endif %} {% if d %} {% for k, v in d.items() %} {{ k }}: {{ v }} {% if not loop.last %}  ·  {% endif %} {% endfor %} {% endif %}

Showing last {{ limit }} events. {% if events | length == limit %} Load more {% endif %}

{% else %}

No audit events recorded yet.

{% endif %} {% endblock %}