{% extends "base.html" %} {% block content %}
Scan History
Completed and in-progress scans.
{% if scans %}
{% for scan in scans %} {% set n_issues = (scan.corrupt or 0) + (scan.unreadable or 0) %} {% endfor %}
Outcome Started Duration Files Issues Scope Rate
{% if not scan.finished_at %} Incomplete {% elif n_issues > 0 %} Issues {% else %} Clean {% endif %}
{{ scan.started_at }}
{{ scan.id[:8] }}…
{{ scan.total | default(0) | int | string }} {% if n_issues > 0 %} {{ n_issues }} {% else %} 0 {% endif %} {{ scan.scope or "all configured paths" }} {% if scan.files_per_sec and scan.files_per_sec > 0 %} {{ "%.1f"|format(scan.files_per_sec) }} f/s {% else %}—{% endif %}
{% else %}
📋
No scans recorded yet
Run your first scan from the dashboard to see history here.
Go to Dashboard
{% endif %} {% endblock %}