{% extends "base.html" %}
{% from "partials/status_pill.html" import pill %}
{% block body %}
{% for target in targets %}
{{ target.name }}
{{ target.subtitle }}
{% for phase in ["build", "test", "release"] %}
{% set tasks = target.by_phase(phase) %}
{% if tasks %}
{{ phase }}
{% for task in tasks %}
{% set est = estimates.get(task.key) %}
{% if task.confirm %}
{# Release-class: irreversible / outward-facing. Not startable from the
dashboard — the confirm-gated Release page (Phase 5) owns these. #}
{% else %}
{% endif %}
{# Info: opens a native
{% endfor %}