{# partials/_breakdown_card.html Stacked bar breakdown. No legend — colours match Overview stat cards exactly. Bootstrap semantic colours: Success → #198754 (bg-success) Failure → #6c757d (bg-secondary) Guardrail→ #ffc107 (bg-warning) Error → #dc3545 (bg-danger) Columns: Total | GTR% (if present) | ASR Rows sorted by ASR descending. row = (label, total, successes, asr_pct[, gtr_count]) #} {% if rows %} {% set sorted_rows = rows | sort(attribute=3, reverse=true) %} {% set max_total = rows | map(attribute=1) | max %} {% set has_gtr = rows[0]|length > 4 %}