{% 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 | reverse %} {% endfor %}
    Timestamp Action Target Outcome
    {{ entry.get('ts', '') | timeago }}
    {{ entry.get('ts', '')[:19] }}
    {{ entry.get('action', '') }} {{ entry.get('target', '') }} {{ entry.get('outcome', '') }}
    {% if total_pages > 1 %} {% endif %} {% else %}

    No audit events

    {% if current_type %} No events of type "{{ current_type }}" found. Clear filter {% else %} No activity recorded yet. Events will appear here once the sandbox runs commands. {% endif %}

    {% endif %} {% endblock %}