{% extends "dashboard/base.html" %} {% from "partials/_macros.html" import pill, status_pill, relative_time, empty_state %} {% block page %}
โ† Workspaces
{{ icon('bot') }}Active sessions
{{ sessions|length }}
{{ icon('list-checks') }}Tasks
{{ tasks|length }}
{{ icon('sparkles') }}Open decisions
{{ decisions|length }}
{{ icon('arrow-up-right') }}Handoffs
{{ handoffs|length }}
{{ icon('activity') }}Events (recent)
{{ events|length }}

{{ icon('sparkles') }} Open decisions

All โ†’
{% if decisions %} {% else %} {{ empty_state('No open decisions', body='Sessions in this workspace haven\'t raised any.', icon_name='sparkles') }} {% endif %}

{{ icon('arrow-up-right') }} Active handoffs

All โ†’
{% if handoffs %} {% else %} {{ empty_state('No active handoffs', icon_name='arrow-up-right') }} {% endif %}

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

Latest events in this workspace.

{% if events %} {% else %} {{ empty_state('No events yet for this workspace', icon_name='activity') }} {% endif %}
{% endblock %}