summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/blocks/wizard_breadcrumb.html
blob: 79bca71f190b5e51c853be81a614832c0b1a02e2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<form action="." method="post">{% csrf_token %}
    <nav aria-label="breadcrumb" role="navigation">
        <ol class="breadcrumb">
            {% for step in previous_steps %}
            <li class="breadcrumb-item">
                <button class='change_step' name="form_prev_step"
                        value="{{forloop.counter0}}">{{step}}</button>
            </li>
            {% endfor %}
            <li class="breadcrumb-item active">
                <a href='#'>{{current_step_label}}</a>
            </li>
            {% for step in next_steps %}
            <li class="breadcrumb-item">
                <button class='change_step' name="form_prev_step"
                        value="{{forloop.counter|add:previous_step_counter}}">{{step}}</button>
            </li>
            {% endfor %}
        </ol>
    </nav>
</form>