{% extends "dashboard/base.html" %} {% from "partials/_macros.html" import pill, status_pill, relative_time, empty_state, panel %} {% block page %}

Needs you

{% for tile in attention_tiles %}
{{ tile.count }}
{{ tile.label }}
{% if tile.icon %}{{ icon(tile.icon) }}{% endif %}
{% endfor %}

Quick actions

{% for action in quick_actions %} {% if action.method == 'post' %}
{% else %} {{ icon(action.icon) }}{{ action.label }} {% endif %} {% endfor %}

{{ icon('activity') }} Last 24h

Real activity, pytest filtered.

Events
{{ stats_24h.events }}
Decisions resolved
{{ stats_24h.decisions_resolved }}
Handoffs picked up
{{ stats_24h.handoffs_picked }}
Sessions started
{{ stats_24h.sessions_started }}

{{ icon('database') }} Universe

What's in the system right now.

Workspaces
{{ counts.workspaces }}
Active sessions
{{ counts.active_sessions }}
Open decisions
{{ counts.open_decisions }}
Active tasks
{{ counts.active_tasks }}
Active handoffs
{{ counts.active_handoffs }}

{{ icon('activity') }} Recent activity

Operator-relevant events; pytest pollution hidden.

View all →
{% if recent_events %} {% else %} {{ empty_state( 'Nothing happened in the last 24h', body='Sessions, decisions, handoffs and route choices all show up here. Try the gateway.', icon_name='activity' ) }} {% endif %}
{% endblock %}