{# Executive — Findings tab panel. The literal greppable heading ``All findings so far.`` lives here so the Executive theme's findings region matches the other four. The severity bar chart sits directly under the heading; its click handler scrolls to one of the four severity bucket anchors (#exec-sev-{critical|high|medium |low}). Each finding card carries severity / id / summary / agent / ASI / probe metadata, restyled with Narrative serif headlines and mono eyebrow tags. Empty-state copy preserves the ``clean_control`` sentry. #} {% set _by_sev = {'critical': [], 'high': [], 'medium': [], 'low': []} %} {% for f in findings_page %} {% set _bucket = _by_sev.get(f.severity_class) %} {% if _bucket is not none %} {% set _ = _bucket.append(f) %} {% endif %} {% endfor %}