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

{% trans "You have entered the following informations:" %}

{% for form_label, form_data in datas %} {% for label, data, cls in form_data %} {% endfor %}
{{form_label}}
{{label}}{{data}}
{% endfor %}

{% trans "Would you like to save them?" %}

{{ previous_fields|safe }}
{% endblock %}