{% extends "base-sfui.html" %} {% block title %}Kerbside console audit{% endblock %} {% block content %} {# The console dict is a raw Console export carrying the secret ticket (and host_subject); only source, name and uuid are rendered here, never iterated. #} {# The UUID sits outside the h2 deliberately: .sf-section-header h2 applies text-transform: uppercase, and a UUID is an identifier an operator may read back or copy, so it must render in true case. #}

Audit events for {{ console.source }} {{ console.name }}

{{ console.uuid }}
{% for event in events %} {% endfor %}
Timestamp Session ID Channel Node PID Message
{{ event.timestamp.strftime('%Y-%m-%d %H:%M:%S') }} {{ event.session_id }} {{ event.channel }} {{ event.node }} {{ event.pid }} {{ event.message }}

Showing the {{ events|length }} most recent of {{ total_events }} events.{% if total_events > events|length %} See more events.{% endif %}

{% endblock %}