diff options
Diffstat (limited to 'ishtar/templates/confirm_wizard.html')
| -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" %}"/> |
