{% extends "base.html" %} {% load ishtar_helpers i18n l10n range %} {% block content %}

{{wizard_label}}

{% include "ishtar/blocks/wizard_breadcrumb.html" %}
{% csrf_token %}
{% block "warning_informations" %}{% endblock %} {% block "warning_message" %}
{% if confirm_msg %}{{confirm_msg|safe}}{%else%}{% trans "You have entered the following informations:" %}{%endif%}
{% endblock %} {% block "detailed_informations" %} {% block "cards" %} {% for form_label, form_data in datas %}
{% if form_label %}
{{form_label}}
{% endif %}
{% for data in form_data %} {% endfor %}
{{data.0}}{% if data.1|is_numeric %}{{data.1|unlocalize}}{% else %}{{data.1}}{% endif %}
{% endfor %} {% endblock "cards" %} {{wizard.management_form}} {% if not wizard.form.is_hidden %} {{ wizard.form.as_table }}
{%endif%} {{ previous_fields|safe }} {% if extra_form %} {{ extra_form }}
{% endif %} {% endblock %} {% block "extra_informations" %}{% endblock %} {% block "footer" %} {% endblock %}
{% endblock %}