{% set incidents = data.incidents %}
{% set summary = data.summary %}
{{ summary.get('open_count', 0) }}
Open Incidents
{{ summary.get('investigating_count', 0) }}
Under Investigation
{{ summary.get('resolved_24h', 0) }}
Resolved (24h)
{% if summary.get('mttr_minutes') %}{{ summary.get('mttr_minutes')|round(0)|int }}m{% else %}โ{% endif %}
Avg MTTR
Active Incidents
{% set active = incidents | selectattr('status', 'in', ['open','investigating']) | list if incidents else [] %}
{% if active %}
{% for inc in active %}
{% set sev = inc.get('severity', 'medium') %}