{% extends "base.html" %} {% set active = "strategos" %} {% block title %}Supply Interdiction — Strategos{% endblock %} {% block content %}
{{ targets|length }}
Ranked Targets
Top-10 priority nodes
{{ supply_count }}
Supply Nodes
Adversary logistics graph
{% if targets %}{{ targets[0].blast_radius }}{% else %}—{% endif %}
Top Blast Radius
Units degraded (highest)
{{ last_run or '—' }}
Last Run

Interdiction Priority — Top {{ targets|length }}

{% if targets %}
{% for t in targets %} {% set rank = t.rank if t.rank is defined else loop.index %} {% endfor %}
# Node Type Criticality Blast Radius Crit Score Sub⁻¹ Composite Controlled By
{{ rank }} {{ t.label or t.node_id }} {{ (t.node_type or 'depot')|replace('_',' ')|title }} {{ (t.criticality or 'medium')|title }} {{ t.blast_radius }} {{ "%.2f"|format(t.criticality_score|float) }} {{ "%.3f"|format(t.substitutability_inverse|float) }} {{ "%.4f"|format(t.composite_score|float) }} {{ t.controlled_by or '—' }}
{% else %}
No interdiction data. Click Run Analysis to generate rankings.
{% endif %}

Blast Radius Overlay

Click a table row to focus
Map loads when Leaflet is available
Nodes without coordinates will not appear
Critical High Medium Low
{% endblock %}