{% extends "base.html" %} {% block title %}Audit Log – Salus by Stranto{% endblock %} {% block content %}

Audit Log

All reboot actions · {{ logs|length }} record{{ 's' if logs|length != 1 }}

Export CSV
{% if filter_username or filter_ap %} Clear {% endif %}
{% if logs %}
{% for log in logs %} {% endfor %}
Timestamp (UTC) User AP Name MAC IP Result Details
{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{{ log.username }}
{{ log.user_email }}
{{ log.ap_name }} {{ log.ap_mac }} {{ log.ap_ip or '—' }} {% if log.result == 'success' %} Success {% else %} Error {% endif %} {{ log.error_message or '—' }}
{% else %}

No log entries found

{% if filter_username or filter_ap %}

Try adjusting your filters.

{% else %}

Reboot actions will appear here.

{% endif %}
{% endif %}
{% endblock %}