summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/wizard/default_wizard.html
diff options
context:
space:
mode:
authorÉtienne Loks <etienne.loks@proxience.com>2014-05-26 15:21:54 +0200
committerÉtienne Loks <etienne.loks@proxience.com>2014-05-26 15:21:54 +0200
commitd28857c8e7e8fcdfc2b0a3b6fccfee2eff35044a (patch)
tree0c63372a171b2da2a1223ff609e691735d4fdd31 /ishtar_common/templates/ishtar/wizard/default_wizard.html
parent0e811b4439255a9c9030c0c211e78694467656cf (diff)
parent9e0053f764bc68d13664e4d47f9b020538453f7e (diff)
downloadIshtar-d28857c8e7e8fcdfc2b0a3b6fccfee2eff35044a.tar.bz2
Ishtar-d28857c8e7e8fcdfc2b0a3b6fccfee2eff35044a.zip
Merge branch 'newstyle'
Conflicts: ishtar_common/static/media/style.css
Diffstat (limited to 'ishtar_common/templates/ishtar/wizard/default_wizard.html')
-rw-r--r--ishtar_common/templates/ishtar/wizard/default_wizard.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/default_wizard.html b/ishtar_common/templates/ishtar/wizard/default_wizard.html
index c1c0cb5cf..6d295e2c9 100644
--- a/ishtar_common/templates/ishtar/wizard/default_wizard.html
+++ b/ishtar_common/templates/ishtar/wizard/default_wizard.html
@@ -9,11 +9,11 @@
<form action="." method="post">{% csrf_token %}
<ul id='form_path'>
{% for step in previous_steps %}
- <li>&raquo;&nbsp;<button class='change_step' name="form_prev_step" value="{{forloop.counter0}}">{{step.form_label}}</button></li>
+ <li><button class='change_step' name="form_prev_step" value="{{forloop.counter0}}">{{step.form_label}}</button></li>
{% endfor %}
- <li class='current'>&raquo;&nbsp;<a href='#'>{{current_step.form_label}}</a></li>
+ <li class='current'><a href='#'>{{current_step.form_label}}</a></li>
{% for step in next_steps %}
- <li>&raquo;&nbsp;<button class='change_step' name="form_prev_step" value="{{forloop.counter|add:previous_step_counter}}">{{step.form_label}}</button></li>
+ <li><button class='change_step' name="form_prev_step" value="{{forloop.counter|add:previous_step_counter}}">{{step.form_label}}</button></li>
{% endfor %}
</ul>
</form>