summaryrefslogtreecommitdiff
path: root/ishtar_common
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@iggdrasil.net>2016-12-05 15:18:57 +0100
committerÉtienne Loks <etienne.loks@iggdrasil.net>2016-12-05 15:18:57 +0100
commit9de3367a92a1f22bdd843e578b134cd39aa4c8fa (patch)
tree2085339062b945f362b6aad52c94ed35ad9d99c9 /ishtar_common
parent1650f7712602345ff295df7497982b169c3ac729 (diff)
downloadIshtar-9de3367a92a1f22bdd843e578b134cd39aa4c8fa.tar.bz2
Ishtar-9de3367a92a1f22bdd843e578b134cd39aa4c8fa.zip
Fix last panel tabs label
Diffstat (limited to 'ishtar_common')
-rw-r--r--ishtar_common/templates/ishtar/wizard/confirm_wizard.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
index 9007c867c..1fbaadcd1 100644
--- a/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
+++ b/ishtar_common/templates/ishtar/wizard/confirm_wizard.html
@@ -6,9 +6,9 @@
<form action="." method="post">{% csrf_token %}
<ul id='form_path'>
{% for step in previous_steps %}
- <li><button name="form_prev_step" value="{{forloop.counter0}}">{{step.form_label}}</button></li>
+ <li><button name="form_prev_step" value="{{forloop.counter0}}">{{step}}</button></li>
{% endfor %}
- <li class='current'><a href='#'>{{current_step.form_label}}</a></li>
+ <li class='current'><a href='#'>{{current_step_label}}</a></li>
</ul>
</form>
<form action="." method="post">{% csrf_token %}