From bd9a7b9981e0cdd787a6ec774c55bc875fbadb64 Mon Sep 17 00:00:00 2001 From: Le Jeune Yann Date: Sun, 9 Jan 2011 01:38:41 +0100 Subject: Deuxieme essais de Template a base de copier/coller en reprenant la boucle du confirm_wizard. Il faut avoir calculé la deadline si il y en a une. Je ne savais gérer le test. Mais ça viendra. :) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ishtar/templates/wizard_done_summary_2.html | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 ishtar/templates/wizard_done_summary_2.html diff --git a/ishtar/templates/wizard_done_summary_2.html b/ishtar/templates/wizard_done_summary_2.html new file mode 100644 index 000000000..66a572542 --- /dev/null +++ b/ishtar/templates/wizard_done_summary_2.html @@ -0,0 +1,23 @@ +{% extends "wizard_done.html" %} +{% load i18n %} +{% block content %} + +
+

{% trans {%trans "Item successfully saved"%} %}

+

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

+

{% trans {%trans "The file must be processed before :"%} %} {% calculated_deadline %}

+

{% trans {%trans "The person in charge is : "%} %} {% responsible %}

+

{% trans {%trans "The internal reference of this file is :"%} %} {% Year %} - {% ref_index %} [{% ref_string %}]

+ + {% for form_label, form_data in datas %} + + + {% for label, data, cls in form_data %} + + {% endfor %} +
{{form_label}}
{{label}}{{data}}
+ {% endfor %} + +
+ +{% endblock %} -- cgit v1.2.3