{% if page.wizard %}
{% with steps=page.wizard.steps.all current_step=1 wizard_id=page.wizard.id %}
{% for step in steps %}
{{ forloop.counter }}
{% endfor %}
{% for step in steps %}

{{ step.title }}

{{ step.content|safe }}

{% if forloop.last %} {% endif %}
{% endfor %}
{% endwith %}
{% endif %}