blob: b99b9e6890f62da51b06402af53883aba6eebff8 (
plain)
1
2
3
4
5
6
7
8
|
{% load i18n %}
<div id='validation-bar'>
<input type="submit" id="submit_form" name='validate' value="{% trans 'Validate' %}"/>
{% if last_step_is_available and next_steps %}
<input type="submit" id="submit_end_form" name='validate_and_end' value="{% trans 'Validate and end' %}"/>
{% endif %}
<a href="{% url 'reset_wizards' %}" id="reset_wizards" class='button'>{% trans "Cancel" %}</a>
</div>
|