You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
849 B
25 lines
849 B
{% extends 'client/base_catalog.html' %}
|
|
{% load i18n %}
|
|
|
|
{% block content_list %}
|
|
{{ wizard.form.media }}
|
|
<p>{% blocktrans with step=wizard.steps.step1 count=wizard.steps.count %}Step {{ step }} of {{ count }}{% endblocktrans %}</p>
|
|
<form action="" method="post">{% csrf_token %}
|
|
<table>
|
|
{{ wizard.management_form }}
|
|
{% if wizard.form.forms %}
|
|
{{ wizard.form.management_form }}
|
|
{% for form in wizard.form.forms %}
|
|
{{ form }}
|
|
{% endfor %}
|
|
{% else %}
|
|
{{ wizard.form }}
|
|
{% endif %}
|
|
</table>
|
|
{% if wizard.steps.prev %}
|
|
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.first }}"> "{% trans "first step" %}" </button>
|
|
<button name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}"> "{% trans "prev step" %}"</button>
|
|
{% endif %}
|
|
<input type="submit" value= "submit"/>
|
|
</form>
|
|
{% endblock %}
|
|
|