{% extends "base.html" %} {% import "_components.html" as ui %} {% block title %}Run {{ run.run_id }} ยท Striatum{% endblock %} {% block main %}

Run {{ run.run_id }}

{{ ui.run_state_pill(run.state, run.paused_at) }} {% if run.branch_name %} on {{ run.branch_name }} {% endif %} {% if run.state in ('prepared', 'needs_branch_confirmation', 'ready', 'running') %} {% if run.paused_at %} {% else %} {% endif %} {% endif %}
{% if run.state == "needs_branch_confirmation" %}

This run is waiting for branch confirmation.

{% endif %}
{% if next_actions and run.state not in ('completed', 'failed', 'canceled') %}

Next actions

{% 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 %}