13 lines
419 B
HTML
13 lines
419 B
HTML
|
{% load i18n %}
|
||
|
|
||
|
{% if cancel_url %}
|
||
|
<a href="{{ cancel_url }}"
|
||
|
class="pull-right btn btn-danger">{% trans "Cancel" %}</a>
|
||
|
{% endif %}
|
||
|
{% if wizard.steps.prev %}
|
||
|
<button name="wizard_goto_step" type="submit"
|
||
|
value="{{ wizard.steps.prev }}" formnovalidate
|
||
|
class="btn btn-info">{% trans "Back" %}</button>
|
||
|
{% endif %}
|
||
|
<button type="submit" class="btn btn-primary">{% trans "Next" %}</button>
|