From 7d2aa560ba859ebb593d34b062bf1faf09c8724c Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Thu, 18 Oct 2012 17:49:57 +0200 Subject: Djangoization - Major refactoring (step 1) --- .../templates/ishtar/wizard/confirm_wizard.html | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 ishtar_common/templates/ishtar/wizard/confirm_wizard.html (limited to 'ishtar_common/templates/ishtar/wizard/confirm_wizard.html') diff --git a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html new file mode 100644 index 000000000..bd80e3967 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html @@ -0,0 +1,34 @@ +{% extends "base.html" %} +{% load i18n %} +{% load range %} +{% block content %} +
{% csrf_token %} + +
+

{%if confirm_msg %}{{confirm_msg|safe}}{%else%}{% trans "You have entered the following informations:" %}{%endif%}

+ {% for form_label, form_data in datas %} + + + {% for label, data, cls in form_data %} + + {% endfor %} +
{{form_label}}
{{label}}{{data}}
+ {% endfor %} +{{wizard.management_form}} + {%if not wizard.form.is_hidden %} + + {{ wizard.form.as_table }} +
+ {%endif%} +

{%if confirm_end_msg %}{{confirm_end_msg|safe}}{%else%}{% trans "Would you like to save them?" %}{%endif%}

+ + {{ previous_fields|safe }} + +
+
+{% endblock %} -- cgit v1.2.3