blob: 45b0c0c0840da801b8c34d750656d95574a1a73a (
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
25
|
{% load i18n %}
<div id='validation-bar' class="row text-center">
<div class="col">
<button type="submit" id="submit_form" name='validate'
value="validate" class="btn btn-success{% if not need_confirm %} wait-button{% endif %}"
{% if need_confirm %}onclick='return confirm("{% trans 'Are you sure?' %}")'{% endif %}>
{% trans 'Validate' %}
</button>
</div>
{% if last_step_is_available and next_steps %}
<div class="col">
<button type="submit" id="submit_end_form" name='validate_and_end'
value="validate_and_end" class="btn btn-success wait-button">
{% trans 'Validate and end' %}
</button>
</div>
{% endif %}
<div class="col">
<a href="{% url 'reset_wizards' %}" id="reset_wizards">
<button type="button" class="btn btn-secondary">
{% trans "Cancel" %}
</button>
</a>
</div>
</div>
|