diff options
| author | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-18 05:36:31 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@peacefrogs.net> | 2011-01-18 05:36:31 +0100 |
| commit | d495ba7ab764049912147129fb70240ef0f1c00d (patch) | |
| tree | 137b02b567e515825c358a9677f2679072b321fd /ishtar/templates | |
| parent | 07f682069b5b1cd432125de37c59c618bef16e0a (diff) | |
| download | Ishtar-d495ba7ab764049912147129fb70240ef0f1c00d.tar.bz2 Ishtar-d495ba7ab764049912147129fb70240ef0f1c00d.zip | |
Close operations (refs #16)
Diffstat (limited to 'ishtar/templates')
| -rw-r--r-- | ishtar/templates/confirm_wizard.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar/templates/confirm_wizard.html b/ishtar/templates/confirm_wizard.html index 5f8985291..a35b6bea1 100644 --- a/ishtar/templates/confirm_wizard.html +++ b/ishtar/templates/confirm_wizard.html @@ -10,7 +10,7 @@ <li class='current'>» <a href='#'>{{current_step.form_label}}</a></li> </ul> <div class='form'> - <p>{% trans "You have entered the following informations:" %}</p> + <p>{%if confirm_msg %}{{confirm_msg}}{%else%}{% trans "You have entered the following informations:" %}{%endif%}</p> {% for form_label, form_data in datas %} <table class='confirm'> <caption>{{form_label}}</caption> @@ -24,7 +24,7 @@ {{ form.as_table }} </table> {%endif%} - <p>{% trans "Would you like to save them?" %}</p> + <p>{%if confirm_end_msg %}{{confirm_end_msg}}{%else%}{% trans "Would you like to save them?" %}{%endif%}</p> <input type="hidden" name="{{ step_field }}" value="{{ step0 }}" /> {{ previous_fields|safe }} <input type="submit" value="{% trans "Validate" %}"/> |
