{% extends "base.html" %} {% block title %}Sentinel — Runs{% endblock %} {% block content %} {% if runs %}
{% for run in runs %} {% endfor %}
Run Repository Started Findings Scope
#{{ run.id }} {{ run.repo_path }} {{ run.started_at.strftime('%Y-%m-%d %H:%M') if run.started_at else '—' }} {{ run.finding_count }} {{ run.scope.value }}
{% else %}

No scan runs yet

Run sentinel scan <repo-path> to generate your first report, or use the New Scan page.

{% endif %} {% endblock %}