From e8a279941c20e8c6bf5b4eef348bb1466f7ff751 Mon Sep 17 00:00:00 2001 From: Le Jeune Yann Date: Sun, 9 Jan 2011 00:46:45 +0100 Subject: Premier essais de Template a base de copier/coller en reprenant la boucle du confirm_wizard --- ishtar/templates/wizard_done_summary.html | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 ishtar/templates/wizard_done_summary.html diff --git a/ishtar/templates/wizard_done_summary.html b/ishtar/templates/wizard_done_summary.html new file mode 100644 index 000000000..53650dafe --- /dev/null +++ b/ishtar/templates/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