{% 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 %}
{% 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 %}
{% endblock %} {% block scripts %} {% endblock %}