{% if criticals %}

Critical Issues ({{ criticals|length }})

{% for check, items in criticals_by_check %}
{{ sev_badge('critical') }} {{ check }} — {{ items|length }} issue(s) {% for item in items[:5] %}
{{ item.summary }}
{% endfor %} {% if items|length > 5 %}
...and {{ items|length - 5 }} more
{% endif %} {% if items[0].fix %}
→ {{ items[0].fix }}
{% endif %} {% set topics = match_topics(items[0].summary, check) %} {% if topics %}{{ knowledge_card(topics) }}{% endif %}
{% endfor %}
{% endif %}