{% extends "base.html" %} {% block title %}Ghost Runs{% endblock %} {% block content %}
{% if scans %} {% for scan in scans %} {% endfor %}
TARGETNAMETYPESTATUS SHADOW SCORETHREATRESULTSSTARTED
{{ scan.target[:45] }} {{ scan.name[:30] if scan.name else '—' }} {{ scan.scan_type }} {% if scan.status == 'running' %} {% endif %} {{ scan.status.upper() }} {% if scan.shadow_score is not none %}
{{ "%.0f"|format(scan.shadow_score) }}
{% else %}{% endif %}
{{ (scan.threat_level or '?').upper()[:4] }} {{ scan.result_count }} {{ scan.started_at[:16] if scan.started_at else scan.created_at[:16] }}
{% else %}
🦉

No ghost runs in the grid

The night is quiet. Launch a mission to break the silence.

LAUNCH FIRST MISSION
{% endif %}
{% endblock %}