diff options
author | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 18:29:47 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2012-10-21 18:29:47 +0200 |
commit | 92c84e043c6e788190980883265e50ed8a1fa5a1 (patch) | |
tree | 606b2c5299a5376e49addc4e2f8acc5d5f465fbe /ishtar_common/templates/ishtar/wizard/wizard_done_summary.html | |
parent | 0f0d096915e95b879b4c027d02e9e28e1279fa3d (diff) | |
download | Ishtar-92c84e043c6e788190980883265e50ed8a1fa5a1.tar.bz2 Ishtar-92c84e043c6e788190980883265e50ed8a1fa5a1.zip |
Djangoization - Major refactoring (step 9)
* move templates
* change labels
Diffstat (limited to 'ishtar_common/templates/ishtar/wizard/wizard_done_summary.html')
-rw-r--r-- | ishtar_common/templates/ishtar/wizard/wizard_done_summary.html | 18 |
1 files changed, 18 insertions, 0 deletions
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 %} + +<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 %} |