{% extends "base.html" %} {% block title %}Audit Log - Familiar Admin{% endblock %} {% block head %} {% endblock %} {% block content %}
Security and compliance event tracking
| Time | Actor | Action | Resource | IP | Details |
|---|---|---|---|---|---|
| {{ event.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} | {% if event.actor_email %} {{ event.actor_email }} {% else %} {{ event.actor_id or 'system' }} {% endif %} | {{ event.action.value if event.action else '-' }} | {% if event.resource_type %} {{ event.resource_type }}{% if event.resource_id %}:{{ event.resource_id[:12] }}{% endif %} {% else %}-{% endif %} | {{ event.ip_address or '-' }} |
{% if event.details %}
{{ event.details | tojson }}
{% else %}-{% endif %}
|
| No audit events found | |||||