{% extends "base.html" %} {% set active = "strategos" %} {% block title %}HITL Queue — Strategos{% endblock %} {% block content %}
{% for s in ['pending','resolved'] %} {{ s|title }} {% endfor %} {% if selected_status == 'pending' and items %}
{% endif %}
{% for item in items %}
{{ item.item_type|replace('_',' ')|title }} {{ item.id[:8] }}…
{% if item.payload %}
{{ item.payload }}
{% endif %}
Created {{ (item.created_at or '')[:16] }}
{% if item.decision %}
Decision: {{ item.decision }} by {{ item.resolved_by or '—' }} at {{ (item.resolved_at or '')[:16] }}
{% endif %}
{% if item.status == 'pending' %}
{% for d in decision_types %} {% endfor %}
{% else %} Resolved {% endif %}
{% else %}
No {{ selected_status }} items in the HITL queue.
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}