{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} — Notifications{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }}

Notifications {{ ws_name }}

Recent audit log entries from the orchestrator.

{% if audit and audit.items %}
{% for entry in audit.items %} {% endfor %}
Time User Action Resource Outcome
{{ entry.timestamp | default(value="—") }} {{ entry.user_id | default(value="—") }} {{ entry.action | default(value="—") }} {{ entry.resource | default(value="—") }} {% if entry.outcome and entry.outcome.status == "ok" %} {{ m::outcome_badge(record=entry) }} {% elif entry.outcome %} {{ m::outcome_badge(record=entry) }} {% else %} {% endif %}
{% else %}
No recent audit entries found.
{% endif %} {% endblock %}