summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/wizard_done_summary.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/wizard_done_summary.html')
-rw-r--r--ishtar_common/templates/wizard_done_summary.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/ishtar_common/templates/wizard_done_summary.html b/ishtar_common/templates/wizard_done_summary.html
new file mode 100644
index 000000000..53650dafe
--- /dev/null
+++ b/ishtar_common/templates/wizard_done_summary.html
@@ -0,0 +1,18 @@
+{% extends "wizard_done.html" %}
+{% load i18n %}
+{% block content %}
+
+<div class='form'>
+ <p>{% trans "You have entered the following informations:" %}</p>
+ {% for form_label, form_data in datas %}
+ <table class='confirm'>
+ <caption>{{form_label}}</caption>
+ {% for label, data, cls in form_data %}
+ <tr{%if cls%} class='{{cls}}'{%endif%}><th>{{label}}</th><td>{{data}}</td></th>
+ {% endfor %}
+ </table>
+ {% endfor %}
+ <p>{% trans {%trans "Item successfully saved"%} %}</p>
+</div>
+
+{% endblock %}