{% extends "base.html" %} {% block title %}Runtime Findings{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Runtime detections ({{ total_count }})

{% if findings %}
{% for f in findings %} {% endfor %}
Severity Title Surface Model Risk When
{{ f.severity }} {{ f.title }} {{ f.surface_label|default:f.trace_type }} {{ f.model|default:"—" }} {{ f.risk_score|floatformat:2 }} {{ f.started_display|default:f.started_at|default:"—" }}
{% else %}

No runtime detections yet.

{% endif %}
{% endblock %}