{% extends "base.html" %} {% set active = "strategos" %} {% block title %}Intelligence Briefs — Strategos{% endblock %} {% block content %} {% if error %}

{{ error }}

{% endif %}
{% if briefs %} {% for b in briefs %} {% endfor %}
Type Title Created SIO Conf. Reviewed Actions
{{ b.brief_type | upper }} {{ b.title }} {{ b.created_at[:16] | replace('T',' ') }} {% if b.sio_confidence is not none %} {{ (b.sio_confidence * 100) | round(1) }}% {% else %}—{% endif %} {% if b.analyst_reviewed %} ✓ {{ b.reviewed_by or 'analyst' }} {% else %} Pending {% endif %} View Export
{% else %}
No intelligence briefs yet. Generate the first one.
{% endif %}
{# ── New Brief Modal ── #} {% endblock %}