diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-03 23:25:12 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2016-12-03 23:29:00 +0100 |
| commit | c02bcd0e6c47c2cb3ce8b9b8927e408020e3a122 (patch) | |
| tree | 758a052f8fd78bc2071bd4d6abb19a2c623876da /ishtar_common/templates | |
| parent | 0203ccf42cb3e8c79ea90a68f35818e4426b4d65 (diff) | |
| download | Ishtar-c02bcd0e6c47c2cb3ce8b9b8927e408020e3a122.tar.bz2 Ishtar-c02bcd0e6c47c2cb3ce8b9b8927e408020e3a122.zip | |
Adapt fields/forms/wizard for treatments
Diffstat (limited to 'ishtar_common/templates')
| -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 c52d71536..d886396b3 100644 --- a/ishtar_common/templates/ishtar/wizard/default_wizard.html +++ b/ishtar_common/templates/ishtar/wizard/default_wizard.html @@ -10,11 +10,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}}</button></li> {% endfor %} - <li class='current'><a href='#'>{{current_step.form_label}}</a></li> + <li class='current'><a href='#'>{{current_step_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}}</button></li> {% endfor %} </ul> </form> |
