{# ── Header ── #}
{# ── Progress stepper ── #}
{% if current_step is defined and total_steps is defined and current_step <= total_steps %}
{% for i in range(1, total_steps + 1) %}
{% set label = step_labels[i - 1] %}
{# ── Circle ── #}
{% if i < current_step %}
{# completed #}
{% elif i == current_step %}
{# active #}
{{ i }}
{{ label }}
{% else %}
{# pending #}
{{ i }}
{{ label }}
{% endif %}
{# ── Connector line ── #}
{% if not loop.last %}
{% endif %}
{% endfor %}
{% endif %}
{# ── Main content ── #}
{% block content %}{% endblock %}
{# ── Submit spinner script (applies to all wizard forms) ── #}