blob: 91f71de43dfc6bbae035c8ece1fce9af764fbaa3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{% extends "ishtar/wizard/wizard_done.html" %}
{% load i18n %}
{% block content %}
<div class='form'>
<p>{% trans {%trans "Item successfully saved"%} %}</p>
<p>{% trans "You have saved the following informations:" %}</p>
<p>{% trans {%trans "The file must be processed before :"%} %} {% calculated_deadline %} </p>
<p>{% trans {%trans "The person in charge is : "%} %} {% responsible %} </p>
<p>{% trans {%trans "The internal reference of this file is :"%} %} {% Year %} - {% ref_index %} [{% ref_string %}]</p>
{% for form_label, form_data in datas %}
<table class='confirm'>
<caption>{{form_label}}</caption>
{% for data in form_data %}
<tr{%if data.2%} class='{{data.2}}'{%endif%}><th>{{data.0}}</th><td>{{data.1}}</td></th>
{% endfor %}
</table>
{% endfor %}
</div>
{% endblock %}
|