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

Projects

Add scan
{{ stats.projects }}
Projects
{{ stats.scans }}
Scans
{{ stats.worst_risk }}/100
Highest current risk
{{ stats.open_critical }}
Open critical findings
{% if projects %} {% for row in projects %} {% set latest = row.latest %} {% endfor %}
ProjectRiskSeverity FindingsScansLast scanned
{{ row.project.name }} {% if latest %} {{ latest.risk_score }} {% else %}{% endif %} {% if latest %} {% for label in severity_order %} {% set n = latest.severity_counts.get(label, 0) %} {% if n %}{% endif %} {% endfor %} {% endif %} {{ latest.total_findings if latest else 0 }} {{ row.scan_count }} {{ latest.created_at.strftime('%Y-%m-%d %H:%M') if latest else '—' }}
{% else %}

No scans yet.

Run argus scan . -f json -o report.json, then add it here.

{% endif %} {% endblock %}