{% extends "base.html" %} {% block title %}Findings Inbox — AADC{% endblock %} {% block content %}
← Designs

📬 Findings Inbox

Cross-design unified findings feed · {{ result.summary.total }} total
{% for sev, color in [('CRITICAL','danger'),('HIGH','warning'),('MEDIUM','info'),('LOW','success')] %} {% set cnt = result.summary.by_severity.get(sev, 0) %} {% if cnt > 0 %} {{ sev }}: {{ cnt }} {% endif %} {% endfor %}
{% if result.filters.severity or result.filters.source %} Clear {% endif %} {{ result.summary.total }} finding(s)
{% if result.summary.by_source %}
{% for src, cnt in result.summary.by_source.items() %} {{ src.replace('_',' ')|title }}: {{ cnt }} {% endfor %}
{% endif %} {% if result.findings %}
{% for f in result.findings %} {% endfor %}
Severity Source Design Finding Detail
{{ f.severity }} {{ f.source.replace('_',' ') }} {{ f.design_name }} {{ f.title }} {{ f.detail or '—' }}
{% else %}
📬

No findings match the current filter.

{% if result.filters.severity or result.filters.source %} Clear filters {% else %}

Run assessments, lint checks, and red team analysis on your designs to populate findings.

{% endif %}
{% endif %}
{% endblock %}