summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
diff options
context:
space:
mode:
Diffstat (limited to 'ishtar_common/templates/ishtar/wizard/confirm_wizard.html')
-rw-r--r--ishtar_common/templates/ishtar/wizard/confirm_wizard.html5
1 files changed, 2 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
index 56887d28b..e4fd739f6 100644
--- a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
+++ b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
@@ -1,6 +1,5 @@
{% extends "base.html" %}
-{% load i18n %}
-{% load range %}
+{% load ishtar_helpers i18n l10n range %}
{% block content %}
<h2>{{wizard_label}}</h2>
@@ -26,7 +25,7 @@
<div class="card-body form-row">
<table class='table'>
{% for data in form_data %}
- <tr{% if data.2 %} class='{{data.2}}'{%endif%}><th>{{data.0}}</th><td>{{data.1}}</td></tr>
+ <tr{% if data.2 %} class='{{data.2}}'{%endif%}><th>{{data.0}}</th><td>{% if data.1|is_numeric %}{{data.1|unlocalize}}{% else %}{{data.1}}{% endif %}</td></tr>
{% endfor %}
</table>