{% extends "base.html" %}
{% import "_components.html" as ui %}
{% import "_recovery_panel.html" as recovery_ui %}
{% import "_session_chip.html" as session_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 %}
{{ recovery_ui.recovery_panel(recovery_panel) }}
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_ui.session_chip(session) }}
{% endfor %}
{% endif %}
{% endblock %}
{% block scripts %}
{% endblock %}