{% extends "base.html" %} {% block title %}{{ _("Audit Log") }}{% endblock %} {% block content %}
{{ _("A record of all ticket actions and account events in your workspace.") }}
{% trans %}Track every ticket action, status change, and account event with a full searchable history. Available on MAX.{% endtrans %}
| {{ _("Timestamp") }} | {{ _("Actor") }} | {{ _("Action") }} | {{ _("Details") }} | {{ _("IP") }} |
|---|---|---|---|---|
| {{ log.created_at|localdt('%Y-%m-%d %H:%M:%S') if log.created_at else '—' }} | {% if log.actor == 'System' %} smart_toy {{ _("System") }} {% else %} {{ log.actor }} {% endif %} | {{ log.action | audit_action }} | {% if log.payload_json %} {{ log.payload_json[:120] }}{% if log.payload_json | length > 120 %}…{% endif %} {% else %} — {% endif %} | {{ log.ip_address or '—' }} |
{{ _("No audit events yet") }}
{{ _("Events will appear here as your team uses ModuleDesk.") }}