{% extends "base.html" %} {% block extratitle %} Zgłoś publikację {% endblock %} {% block extrahead %} {{ wizard.form.media }} {% endblock %} {% block content %} {% load crispy_forms_tags %}
{% csrf_token %}
Formularz {{ wizard.steps.step1 }} z {{ wizard.steps.count }} {{ wizard.management_form }} {% if wizard.form.forms %} {{ wizard.form.management_form }} {% for form in wizard.form.forms %}
{{ form|crispy }}
{% endfor %} {% else %} {{ wizard.form|crispy }} {% endif %}
{% if wizard.steps.prev %} {% endif %} {% if wizard.steps.next %} {% else %} {% endif %}
{% endblock %}