diff options
author | Le Jeune Yann <lj.yann@gmail.com> | 2011-01-24 21:12:14 +0100 |
---|---|---|
committer | Le Jeune Yann <lj.yann@gmail.com> | 2011-01-24 21:12:14 +0100 |
commit | def6a737e306aa04d6030475a793eb0c105b0065 (patch) | |
tree | 1a01f97cb66e69cf4b33a6c6267a2c5289419a59 | |
parent | bb623859fbe5702a117fe29da7fd88746e4c27c8 (diff) | |
download | Ishtar-def6a737e306aa04d6030475a793eb0c105b0065.tar.bz2 Ishtar-def6a737e306aa04d6030475a793eb0c105b0065.zip |
proto template de resultat de recherche
-rw-r--r-- | ishtar/templates/wizard_list_search_result.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/ishtar/templates/wizard_list_search_result.html b/ishtar/templates/wizard_list_search_result.html new file mode 100644 index 000000000..6cbafb930 --- /dev/null +++ b/ishtar/templates/wizard_list_search_result.html @@ -0,0 +1,25 @@ +{% extends "wizard_done.html" %} +{% load i18n %} +{% block content %} + +<div class='form'> + <p>{% trans {%trans "PLease note that the file must be processed before :"%} %} {% calculated_deadline %} </p> + + <p>{% trans {%trans "Item successfully saved"%} %}</p> + <p>{% trans "You have saved the following informations:" %}</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 label, data, cls in form_data %} + <tr{%if cls%} class='{{cls}}'{%endif%}><th>{{label}}</th><td>{{data}}</td></th> + {% endfor %} + </table> + {% endfor %} + +</div> + +{% endblock %} |