{% extends 'client/base_catalog.html' %} {% load i18n %} {% block content_list %} {{ wizard.form.media }}

{% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}Step {{ step }} of {{ count }}{% endblocktrans %}

{% 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.prev %} {% endif %}
{% endblock %}