{% extends "base.html" %} {% block title %}Run {{ run.run_id }} · Striatum{% endblock %} {% block main %}

Run {{ run.run_id }}

{{ run.state }} {% if run.branch_name %} on {{ run.branch_name }} {% endif %} {% if run.paused_at %} paused {% 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 %}

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