DURATION{% if scan.duration_seconds %}{{ "%.1f"|format(scan.duration_seconds) }}s{% else %}—{% endif %}
SHADOW SCORE
{{ "%.0f"|format(scan.shadow_score or 0) }}/100
THREAT LEVEL
{{ (scan.threat_level or 'unknown').upper() }}
{% if is_live %}
◉LIVE SIGNAL FEED
{{ scan.progress }}%
[OWLSCAN]Ghost run active. Receiving signal...
{% endif %}
{% for module, items in grouped_results.items() %}
{% endfor %}
{% for result in results %}
[{{ result.module }}]{{ result.result_type }}⚡ {{ result.source or '—' }}
{% if result.tags %}
{% for tag in result.tags[:4] %}
{{ tag }}
{% endfor %}
{% endif %}
CONF {{ "%.0f"|format((result.confidence or 0) * 100) }}%
{% if result.is_anomaly %}
⚠ ANOMALY
{% endif %}
{{ result.timestamp[:16] if result.timestamp else '' }}▼
{{ result.data|tojson(indent=2) }}
{% else %}
🦉
{% if is_live %}Mission in progress — signals incoming...{% else %}No results captured.{% endif %}
{% endfor %}
{% for module, items in grouped_results.items() %}
{% for result in items %}
{{ result.result_type }}⚡ {{ result.source or '—' }}
{% for tag in (result.tags or [])[:4] %}
{{ tag }}
{% endfor %}
CONF {{ "%.0f"|format((result.confidence or 0) * 100) }}%
{% if result.is_anomaly %}⚠{% endif %}
▼