{% extends "base.html" %}{% block title %}Audit Trail{% endblock %}{% block page_title %}Audit Trail{% endblock %} {% block content %}

{{ total }} Audit Events

{% for log in logs %}{% endfor %}
Date / TimeActorActionEntityDetailsIP
{{ log.created_at|localdt('%Y-%m-%d %H:%M:%S') }}{{ log.actor.full_name if log.actor else 'Anonymous / System' }}{{ log.action }}{{ log.entity_type }}{% if log.entity_id %} #{{ log.entity_id }}{% endif %}{{ log.details or '—' }}{{ log.ip_address or '—' }}
{% endblock %}