diff options
author | Le Jeune Yann <lj.yann@gmail.com> | 2011-01-09 00:46:45 +0100 |
---|---|---|
committer | Le Jeune Yann <lj.yann@gmail.com> | 2011-01-09 00:46:45 +0100 |
commit | e8a279941c20e8c6bf5b4eef348bb1466f7ff751 (patch) | |
tree | 0af76d7999c50b0fe64fe1b7e0980860dedf3a4b | |
parent | e87f791d0fa450da71ead7148437ba95151c8eeb (diff) | |
download | Ishtar-e8a279941c20e8c6bf5b4eef348bb1466f7ff751.tar.bz2 Ishtar-e8a279941c20e8c6bf5b4eef348bb1466f7ff751.zip |
Premier essais de Template a base de copier/coller en reprenant la boucle du confirm_wizard
-rw-r--r-- | ishtar/templates/wizard_done_summary.html | 18 |
1 files changed, 18 insertions, 0 deletions
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 %} + +<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 %} |