11 lines
365 B
HTML
11 lines
365 B
HTML
{% if cancel_url %}
|
|
<a href="{{ cancel_url }}"
|
|
class="pull-right btn btn-link">Abbrechen</a>
|
|
{% endif %}
|
|
{% if wizard.steps.prev %}
|
|
<button name="wizard_goto_step" type="submit"
|
|
value="{{ wizard.steps.prev }}"
|
|
class="btn btn-default">Zurück</button>
|
|
{% else %}
|
|
{% endif %}
|
|
<button type="submit" class="btn btn-primary">Weiter</button>
|