{% extends "admin/base.html" %} {% block title %}Audit log · bragi admin{% endblock %} {% block content %}
| When | Actor | Action | Target | IP | Extra |
|---|---|---|---|---|---|
| {% set actor = users_by_id.get(r.actor_user_id) %} {% if actor %}{{ actor.display_name }} <{{ actor.email }}> {% elif r.actor_user_id %}user #{{ r.actor_user_id }} (gone) {% else %}(system) {% endif %} | {{ r.action }} |
{% if r.target_type %}{{ r.target_type }} #{{ r.target_id }}{% else %}-{% endif %} | {{ r.ip or '-' }} | {{ r.extra | tojson }} |
No audit rows {% if action_filter or actor_filter %}match the filter{% endif %}.
{% endif %} {% endblock %}