diff options
author | Étienne Loks <etienne.loks@proxience.com> | 2014-05-13 00:43:50 +0200 |
---|---|---|
committer | Étienne Loks <etienne.loks@proxience.com> | 2014-05-13 00:43:50 +0200 |
commit | c057763cc1b0f288ffe27cd9638d113c8859e2d8 (patch) | |
tree | 6490929bc2b5adea6ec41971837d4f9db46a06d4 /ishtar_common/templates/ishtar/wizard/default_wizard.html | |
parent | 26fd95c723cec410e179362f2c86ea1e7b527e3d (diff) | |
download | Ishtar-c057763cc1b0f288ffe27cd9638d113c8859e2d8.tar.bz2 Ishtar-c057763cc1b0f288ffe27cd9638d113c8859e2d8.zip |
Work on new design
Diffstat (limited to 'ishtar_common/templates/ishtar/wizard/default_wizard.html')
-rw-r--r-- | ishtar_common/templates/ishtar/wizard/default_wizard.html | 6 |
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>» <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'>» <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>» <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> |