diff options
| author | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-09 18:01:38 +0100 |
|---|---|---|
| committer | Étienne Loks <etienne.loks@iggdrasil.net> | 2017-11-09 18:01:38 +0100 |
| commit | d89dd18aa21a3054ed789d55201d68bf77b527a0 (patch) | |
| tree | b5ddd23656414acbf9aab9cc8a6f21e2dec2de6e /ishtar_common/templates/ishtar/wizard/search.html | |
| parent | e81ed7c95c3709fa3beb48ffe189607047c36d3a (diff) | |
| download | Ishtar-d89dd18aa21a3054ed789d55201d68bf77b527a0.tar.bz2 Ishtar-d89dd18aa21a3054ed789d55201d68bf77b527a0.zip | |
UI: adapt forms
Diffstat (limited to 'ishtar_common/templates/ishtar/wizard/search.html')
| -rw-r--r-- | ishtar_common/templates/ishtar/wizard/search.html | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/ishtar_common/templates/ishtar/wizard/search.html b/ishtar_common/templates/ishtar/wizard/search.html index e5066cf87..89ce860d4 100644 --- a/ishtar_common/templates/ishtar/wizard/search.html +++ b/ishtar_common/templates/ishtar/wizard/search.html @@ -5,9 +5,15 @@ {% endblock %} {% block content %} <h2>{{wizard_label}}</h2> -<ul id='form_path'> - <li class='current'><a href='#'>{{current_step.form_label}}</a></li> -</ul> + +<nav aria-label="breadcrumb" role="navigation"> + <ol class="breadcrumb"> + <li class="breadcrumb-item active"> + <a href='#'>{{current_step.form_label}}</a> + </li> + </ol> +</nav> + {% if wizard.form.forms %} <div class='form'> <div class='top_button'><input type="submit" id="submit_form" value="{% trans "Validate" %}"/></div> |
