{% extends "base.html" %}
{% import "_components.html" as ui %}
{% block title %}Run {{ run.run_id }} ยท Striatum{% endblock %}
{% block main %}
{% if next_actions and run.state not in ('completed', 'failed', 'canceled') %}
Next actions
{% for action in next_actions %}
- {{ action }}
{% endfor %}
{% endif %}
Status
- State
- {{ run.state }}
- Created
- {% if run.created_at %}{% else %}โ{% endif %}
- Started
- {% if run.started_at %}{% else %}โ{% endif %}
- Completed
- {% if run.completed_at %}{% else %}โ{% endif %}
{% if verdicts_by_posture %}
Verdicts by posture
{% for posture, count in verdicts_by_posture.items() %}
-
{{ posture }}
{{ count }}
{% endfor %}
{% endif %}
{% if sessions %}
Sessions
{% for session in sessions %}
-
{{ session.role_id }}/{{ session.lane_id or "any" }}
{{ ui.lane_attestation_chip(session.lane_attestation == "attested", session.lane_attestation_reason, session.supervisor_id) }}
{% if session.lane_attestation != "attested" %}
{{ ui.byline_line("author: operator", none, false) }}
{% endif %}
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{% endblock %}