{% if findings %} {% for f in findings %}
{{ f.severity }} {% if f.is_new %}new{% endif %} {% if f.status == 'resolved' %}resolved{% endif %} {% if f.blast_label %}{{ f.blast_label }}{% if f.blast_radius %} ({{ "%.2f"|format(f.blast_radius.score) }}){% endif %}{% endif %} {% if f.suppressed %}suppressed{% endif %} {{ f.title }} #{{ f.id }} {{ f.rule_id }} →
{% if f.suppressed and f.suppression_reason %}

Suppressed: {{ f.suppression_reason }}

{% endif %}

{% if f.status == 'resolved' %}Resolved{% if f.resolved_at %} {{ f.resolved_at[:10] }}{% endif %}{% else %}Open{% endif %} {% if f.first_seen %}· first seen {{ f.first_seen[:10] }}{% endif %} {% if f.last_seen %}· last seen {{ f.last_seen[:10] }}{% endif %}

{{ f.description }}

{% if f.blast_radius %}

Blast radius

{{ f.blast_radius.factors|join("; ") }}
{% endif %}

Evidence

{{ f.evidence_pretty }}
{% if f.suggested_remediation %}

Suggested remediation

{{ f.suggested_remediation }}

{% endif %}
{% endfor %} {% else %}
No findings match the current filters.
{% endif %}