{% extends "layouts/dashboard.html" %} {% from "macros/table.html" import render_sort_header %} {% block title %}Audit Log - Nautilus Admin{% endblock %} {% block dashboard_content %}

Audit Log

{% include "partials/audit_filters.html" %}
{{ render_sort_header("timestamp", "Timestamp", current_sort) }} {{ render_sort_header("duration_ms", "Duration (ms)", current_sort) }} {% for entry in entries %} {% include "partials/audit_rows.html" %} {% else %} {% endfor %}
Event Type Agent ID Source IDOutcome

No audit entries found

{% include "partials/pagination.html" %} {% endblock %}