{% extends "base.html" %} {% from "scans/_result_render.html" import ri %} {% block title %}{{ scan.target }} — Summary{% endblock %} {# Compact severity chips (letter + count) for tiles and jump-nav chips. #} {% macro sev_pips(sev) %} {%- for lvl in ['critical','high','medium','low'] -%} {%- if sev[lvl] -%}{{ lvl[0]|upper }}{{ sev[lvl] }}{%- endif -%} {%- endfor -%} {% endmacro %} {# Full labelled severity breakdown for the Findings section header. #} {% macro sev_bar(sev) %} {% endmacro %} {% block content %}
{% if attribution %} {# ── OPSEC Attribution Surface — the flagship "what did this scan leak?" panel ── #}{% if is_live %}Scan in progress — results incoming...{% else %}No results yet.{% endif %}