{% extends "base.html" %} {% block title %}Audit Log (latest 100){% endblock %} {% block body_class %}themed-bg{% endblock %} {% block content %}
| Date / Time | Entry | Action & Changes | User |
|---|---|---|---|
| {{ r.timestamp|date:"Y-m-d H:i:s" }} | {% if r.action == "delete" %} #{{ r.entry_id }} {% else %} #{{ r.entry_id }} {% endif %} |
{% if r.action == "create" %}
Created
{% elif r.action == "update" %}
Updated
{% else %}
Deleted
{% endif %}
{% if r.changes %}
{# --- Created: look for the __created__ entry --- #}
{% if r.action == "create" %}
{% for k, v in r.changes.items %}
{% if k == "__created__" %}
{% endif %}
Show created fields
Deleted record snapshot
|
{{ r.username|default:"—" }} |
| No audit entries yet. | |||