{% extends "new_request.html" %} {% load crispy_forms_tags %} {% load url from future %} {% block extra_scripts %} {{ block.super }} {{ form.media }} {{ wizard.form.media }} {% endblock %} {% block content %}

Demande de reprographie

Étape finale : {{ wizard.form.display_name }}


{% for step, form, pprint_data, missings in all_forms %} {% if not forloop.last %}{# don't process last step == validation #}

Étape {{ forloop.counter }}. {{ form.display_name }}

    {% for d,v in pprint_data %} {% if v %}
  • {{ d }}: {{ v }}
  • {% endif %} {% endfor %}
{% if missings %}

Champs obligatoires: {{ missings|join:", " }}

{% endif %} {% endif %} {% endfor %} {{ wizard.management_form }} {% crispy wizard.form %}
{% if wizard.steps.prev %} {% endif %}
{% for workflow in workflows %} {{ workflow.action }} {% endfor %}
{% endblock %}