{# T-1910 Slice 2: focus dot is a click-to-toggle htmx button #}
{{ a.id }}
{# T-1910 Slice 1: status badge label + stale badge #}
{% if a.status == 'in-progress' %}{{ a.status }}
{% elif a.status == 'closed' %}closed
{% elif a.status == 'draft' %}{{ a.status }}
{% elif a.status == 'abandoned' %}{{ a.status }}
{% endif %}
{% if a.stale %}stale{% endif %}
{# T-1910 Slice 2: inline editable name #}
{{ a.name }}
{# T-1910 Slice 1: decision snippet on closed arcs #}
{% if a.status == 'closed' and a.decision %}
decision: {{ a.decision }}
{% endif %}