15 lines
516 B
HTML
15 lines
516 B
HTML
{% load i18n %}
|
|
|
|
{% if cancel_url %}
|
|
<a href="{{ cancel_url }}"
|
|
class="float-right btn btn-link">{% trans "Cancel" %}</a>
|
|
{% endif %}
|
|
{% if wizard.steps.prev %}
|
|
<button name="wizard_goto_step" type="submit"
|
|
value="{{ wizard.steps.prev }}"
|
|
class="btn btn-phoenix-secondary">{% trans "Back" %}</button>
|
|
{% else %}
|
|
<button disabled name="" type="button" class="btn">{% trans "Back" %}</button>
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-phoenix-primary">{% trans "Next" %}</button>
|