{% extends "base.html" %} {% block title %}{{ project.name }} · Argus Dashboard{% endblock %} {% block content %}

{{ project.name }}

Risk over time

{{ scans|length }} scan{{ '' if scans|length == 1 else 's' }}
{% if trend.dots %} {% for g in trend.gridlines %} {{ g.label }} {% endfor %} {% if trend.area %}{% endif %} {% for d in trend.dots %} {{ d.when }} — risk {{ d.risk }}, {{ d.findings }} findings {% endfor %} {% else %}

No scans yet.

{% endif %}

Scan history

{% for s in scans %} {% endfor %}
WhenRiskSeverity FindingsArgus
{{ s.created_at.strftime('%Y-%m-%d %H:%M') }} {{ s.risk_score }} {% for label in severity_order %} {% set n = s.severity_counts.get(label, 0) %} {% if n %}{% endif %} {% endfor %} {{ s.total_findings }} v{{ s.argus_version }}
{% endblock %}