{% extends "base.html" %} {% block title %}Runbook Detail — GovLift{% endblock %} {% block content %}
{{ classification }}
← Runbooks

{{ data.runbook.name or 'Runbook Detail' }}

{{ data.runbook.description or 'DoD IL4 Migration Runbook' }}

{% if data.runbook %} Execute Runbook {% endif %}

Steps ({{ data.steps|length }})

{% for step in data.steps %}
{{ step.step_order }}
{{ step.title }}
{% if step.description %}
{{ step.description }}
{% endif %}
{% else %}

No steps defined.

{% endfor %}

Recent Executions

{% for ex in data.executions %}
{{ ex.operator or 'system' }} — {{ ex.status }} — {{ ex.started_at or 'N/A' }}
{% else %}

No executions yet.

{% endfor %} {% endblock %}