{% extends "base.html" %} {% block title %}Replay: {{ run_id }} - FailCore{% endblock %} {% block content %}
{# Header #}

INCIDENT REPLAY

{{ run_id }} {% if incident_tape.meta.command %} {{ incident_tape.meta.command }} {% endif %} {% if incident_tape.meta.created_at %} {{ incident_tape.meta.created_at }} {% endif %}
{% if '_' in run_id %} ← BACK TO RUN {% else %} ← BACK TO RUNS {% endif %}
{# Three-column layout: Timeline | Inspector | Narrative/Evidence/Cost #}
{# Left: Timeline (frame list) #}
{% include "partials/replay_timeline.html" %}
{# Center: Inspector (diff + highlights) #}
{% include "partials/inspector_panel.html" %}
{# Right: Narrative / Evidence / Cost #}
{% include "partials/replay_sidebar.html" %}
{% endblock %}