{% extends "base.html" %} {% block title %}Audit Log — Roundtable{% endblock %} {% block content %}
| 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.