{% extends "base.html" %} {% block title %}{{ slug }} history · Gauntlet Console{% endblock %} {% block body %}

← {{ slug }}

Run history — {{ slug }}

{# FR-2.4: every run of this slug, newest first, openable read-only via ?run_id= so a completed/failed PRD run is reviewable long after it finished. #} {% if not runs %}

No runs for this slug yet.

{% else %} {% for r in runs %} {% endfor %}
RunStatusCurrent stepStartedEnded
{{ r.run_id }} {% if r.active %}active{% endif %} {{ r.status }} {{ r.current_step or "—" }} {% if r.current_step_status %}({{ r.current_step_status }}){% endif %} {{ r.started or "—" }} {{ r.ended or "—" }} cost
{% endif %} {% endblock %}