From e87f791d0fa450da71ead7148437ba95151c8eeb Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sat, 8 Jan 2011 14:48:58 +0100 Subject: Better style. Better confirmation page. Better management of wizard steps. (closes #63) --- ishtar/templates/confirm_wizard.html | 27 +++++++++++++++------------ 1 file changed, 15 insertions(+), 12 deletions(-) (limited to 'ishtar/templates/confirm_wizard.html') diff --git a/ishtar/templates/confirm_wizard.html b/ishtar/templates/confirm_wizard.html index c83134dfb..78b39fb35 100644 --- a/ishtar/templates/confirm_wizard.html +++ b/ishtar/templates/confirm_wizard.html @@ -5,21 +5,24 @@
{% csrf_token %}
-

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

- -{% for label, data in datas %} - -{% endfor %} -
{{label}}{{data}}
-

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

- -{{ previous_fields|safe }} - +

{% 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 %} -- cgit v1.2.3