{% extends "base.html" %} {% set active = "strategos" %} {% block title %}{{ brief.title }} — Strategos Brief{% endblock %} {% block content %} {# ── Reviewed banner ── #} {% if brief.analyst_reviewed %}
Analyst Approved by {{ brief.reviewed_by or 'analyst' }} at {{ brief.reviewed_at[:16] | replace('T',' ') }} UTC {% if brief.annotations %}

Annotations: {{ brief.annotations }}

{% endif %}
{% endif %} {# ── Approve Panel ── #} {# ── Brief content ── #}
{% if content_html %}
{{ content_html | safe }}
{% else %}
{{ brief.content_md }}
{% endif %}
{% endblock %}