diff options
Diffstat (limited to 'ishtar_common/templates/ishtar')
7 files changed, 85 insertions, 0 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html index bd80e3967..5d1b1c042 100644 --- a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html +++ b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html @@ -2,6 +2,7 @@ {% load i18n %} {% load range %} {% block content %} +<h2>{{wizard_label}}</h2> <form action="." method="post">{% csrf_token %} <ul id='form_path'> {% for step in previous_steps %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_closing_done.html b/ishtar_common/templates/ishtar/wizard/wizard_closing_done.html new file mode 100644 index 000000000..54990a629 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/wizard_closing_done.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% load i18n %} +{% block content %} +<p>{%trans "Item successfully closed"%}</p> +</div> +{% endblock %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_delete_done.html b/ishtar_common/templates/ishtar/wizard/wizard_delete_done.html new file mode 100644 index 000000000..854341aa3 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/wizard_delete_done.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% load i18n %} +{% block content %} +<p>{%trans "Item successfully deleted"%}</p> +</div> +{% endblock %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_done.html b/ishtar_common/templates/ishtar/wizard/wizard_done.html new file mode 100644 index 000000000..a7068bbab --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/wizard_done.html @@ -0,0 +1,6 @@ +{% extends "base.html" %} +{% load i18n %} +{% block content %} +<p>{%trans "Item successfully saved"%}</p> +</div> +{% endblock %} 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 %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_done_summary_2.html b/ishtar_common/templates/ishtar/wizard/wizard_done_summary_2.html new file mode 100644 index 000000000..66a572542 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/wizard_done_summary_2.html @@ -0,0 +1,23 @@ +{% extends "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 label, data, cls in form_data %} + <tr{%if cls%} class='{{cls}}'{%endif%}><th>{{label}}</th><td>{{data}}</td></th> + {% endfor %} + </table> + {% endfor %} + +</div> + +{% endblock %} diff --git a/ishtar_common/templates/ishtar/wizard/wizard_list_search_result.html b/ishtar_common/templates/ishtar/wizard/wizard_list_search_result.html new file mode 100644 index 000000000..6cbafb930 --- /dev/null +++ b/ishtar_common/templates/ishtar/wizard/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 %} |