{% extends "base.html" %} {% block title %}Wizard Demo{% endblock title %} {% block styles %}{{ wizard.form.media }}{% endblock styles%} {% block content %}

Model Form Wizard Demo

{% if messages %} {% for msg in messages %} {{ msg }}

{% endfor %} {% endif %}

Step {{ wizard.steps.step1 }} of {{ wizard.steps.count }}

{% csrf_token %} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {{ form }} {% endfor %} {% else %} {{ wizard.form }} {% endif %}
{% if wizard.steps.next %} {% else %} {% endif %} {% if wizard.steps.prev %} {% endif %}
{% endblock content %}