From 4bf634a003ab6c3d9edf1cc7fa40e7203d59711f Mon Sep 17 00:00:00 2001 From: Étienne Loks Date: Sun, 21 Oct 2012 18:29:47 +0200 Subject: Djangoization - Major refactoring (step 9) * move templates * change labels --- .../templates/ishtar/wizard/wizard_done_summary.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ishtar_common/templates/ishtar/wizard/wizard_done_summary.html (limited to 'ishtar_common/templates/ishtar/wizard/wizard_done_summary.html') diff --git a/ishtar_common/templates/ishtar/wizard/wizard_done_summary.html b/ishtar_common/templates/ishtar/wizard/wizard_done_summary.html new file mode 100644 index 000000000..53650dafe --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/wizard_done_summary.html @@ -0,0 +1,18 @@ +{% extends "wizard_done.html" %} +{% load i18n %} +{% block content %} + +
+

{% 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 {%trans "Item successfully saved"%} %}

+
+ +{% endblock %} -- cgit v1.2.3