{% extends "core/base.html" %} {% block title %}Audit Log — SwiftPOS{% endblock %} {% block content %}

Audit Log

{{ total_count }} total events tracked

Clear
{% for entry in page_obj %} {% empty %} {% endfor %}
Timestamp User Role Action Target IP Address
{{ entry.timestamp|date:"Y-m-d" }}
{{ entry.timestamp|date:"H:i:s" }}
{% if entry.user %} {{ entry.user.username }} {% else %} Unknown {% endif %} {% if entry.user %} {{ entry.user.get_role_display }} {% endif %} {% with action=entry.action %} {{ entry.get_action_display }} {% endwith %} {{ entry.target|default:"—" }} {{ entry.ip_address|default:"—" }}
No audit log entries match your filters.
{% if page_obj.has_other_pages %}
{% endif %}
{% endblock %}