{# Partial: recent group runs panel for group_detail.html. Polls every 3s while a group run is in progress. #}
Recent runs last {{ recent_runs|length }}
{% if recent_runs %} {% for r in recent_runs %} {% endfor %}
id started duration triggered by status
#{{ r.id }} {{ r.started_at or "—" }} {{ r.duration_s | duration }} {{ r.triggered_by or "—" }} {{ r.status }}
{% else %}
No runs yet.
{% endif %}