{% extends 'admin/base_site.html' %} {% load i18n %} {% block content %}

{{ subtitle|title }}

{% trans "Step" %} {{ wizard.steps.step1 }} {% trans "of" %} {{ wizard.steps.count }}

{{ description }}

{% csrf_token %} {{ wizard.form.media }} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %} {% include 'admin/simpel_shop/checkout_wizzard_form.html' with form=form %} {% endfor %} {% else %} {% include 'admin/simpel_shop/checkout_wizzard_form.html' with form=form %} {% endif %} {% if wizard.steps.prev %} {% endif %}
{% endblock %}