{% extends 'core/base.html' %} {% block title %}Audit Log | Killian{% endblock %} {% block content %}

Audit Log

Security events, authentication activity, record changes, source addresses, and request information.

Clear
{{ result_count }} event{{ result_count|pluralize }} Showing up to the latest 500 matching events
{% for e in events %}
{{ e.timestamp|date:'Y-m-d H:i:s' }} {% if e.actor %} {{ e.actor.username }} {% else %} System / Anonymous {% endif %} {{ e.ip_address|default:'—' }} {{ e.action }} {% if e.organization %} {{ e.organization }} {% elif e.organization_snapshot_id %} {% if e.organization_snapshot_name %} {{ e.organization_snapshot_name }} {% else %} Organization {{ e.organization_snapshot_id }} {% endif %} (Deleted) {% else %} — {% endif %} {% if e.object_type %} {{ e.object_type }} {% if e.object_id %} ID {{ e.object_id }} {% endif %} {% else %} — {% endif %} {{ e.summary|default:'—' }} {% if e.request_method %} {{ e.request_method }} {% endif %} {% if e.request_path %} {{ e.request_path }} {% else %} Legacy event {% endif %} {% if e.user_agent %} {{ e.user_agent|truncatechars:90 }} {% endif %}
{% empty %}
No audit events match the selected filters.
{% endfor %}
{% endblock %}