{% extends "base.html" %}
{% block title %}Run {{ run.run_id }} · Striatum{% endblock %}
{% block main %}
Status
- State
- {{ run.state }}
- Created
- {{ run.created_at }}
- Started
- {{ run.started_at or "—" }}
- Completed
- {{ run.completed_at or "—" }}
{% if verdicts_by_posture %}
Verdicts by posture
{% for posture, count in verdicts_by_posture.items() %}
- {{ posture }} {{ count }}
{% endfor %}
{% endif %}
{% if next_actions %}
Next actions
{% for action in next_actions %}
- {{ action }}
{% endfor %}
{% endif %}
{% endblock %}