{% extends "base.html" %} {% block title %}Audit Logs | BizTrack{% endblock %} {% block content %}

Audit Logs

Track who changed what and when.

{% for log in logs %} {% empty %} {% endfor %}
When Actor Action Object Changes
{{ log.created_at|date:"Y-m-d H:i:s" }} {{ log.actor.username|default:"System" }} {{ log.get_action_display }}
{{ log.app_label }}.{{ log.model_name }}
#{{ log.object_id }} — {{ log.object_repr }}
{% if log.changes %}
{{ log.changes }}
{% else %} No field-level diff {% endif %}
No audit logs found.
{% include "partials/pagination.html" with page_obj=logs %}
{% endblock %}