summaryrefslogtreecommitdiff
path: root/ishtar_common/templates/ishtar/wizard/validation_bar.html
blob: c6856aa75e8d6b245d031897d3036518685fba79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{% load i18n %}
<div id='validation-bar' class="row text-center">
    <div class="col-sm">
        <button type="submit" id="submit_form" name='validate'
                value="validate" class="btn btn-primary">
            {% trans 'Validate' %}
        </button>
    </div>
    {% if last_step_is_available and next_steps %}
    <div class="col-sm">
        <button type="submit" id="submit_end_form" name='validate_and_end'
            value="validate_and_end" class="btn btn-primary">
            {% trans 'Validate and end' %}
        </button>
    </div>
    {% endif %}
    <div class="col-sm">
        <a href="{% url 'reset_wizards' %}" id="reset_wizards">
            <button type="button" class="btn btn-secondary">
                {% trans "Cancel" %}
            </button>
        </a>
    </div>
</div>