{% extends "base.html" %} {% block title %}Run Plan - {{ run_id[:16] }}{% endblock %} {% block head %} {% endblock %} {% block content %}
Back to Run

Execution Plan

{% if plan %}

DAG Visualization

Steps ({{ plan.steps|length if plan.steps else 0 }})

{% for step in plan.get('steps', []) %}
{{ step.name or step.id or 'Step ' ~ loop.index }} {{ step.status or ('cached' if step.cached else 'pending') }}
{% if step.cache_id %}
{{ step.cache_id[:24] }}...
{% endif %}
{% else %}

No steps defined

{% endfor %}
{% else %}

No execution plan available for this run.

{% endif %} {% endblock %}