{% extends "base.html" %} {% block title %}LASSO — Audit Log: {{ sandbox.id }}{% endblock %} {% block breadcrumb %}
  • {% endblock %} {% block content %}
    {% if current_type %} Clear Filters {% endif %}
    {% if entries %}
    {% for entry in entries %} {% endfor %}
    Timestamp Type Action Target Outcome Signature
    {{ entry.get('ts', '') | timeago }}
    {{ entry.get('ts', '')[:19] }}
    {{ entry.get('type', '') }} {{ entry.get('action', '') }} {{ entry.get('target', '') }} {{ entry.get('outcome', '') }} {% if entry.get('sig') %} {{ entry.get('sig', '')[:12] }} {% else %} unsigned {% endif %}
    {% if total_pages > 1 %} {% endif %} {% else %}

    No audit events

    {% if current_type %} No events of type "{{ current_type }}" found. Clear filter {% else %} No events recorded yet. Execute a command in the sandbox terminal to see activity here. All commands, lifecycle events, and security violations are logged with HMAC-signed audit entries. {% endif %}

    {% endif %} {% endblock %}