2020-10-21 11:15:55 +02:00
|
|
|
{% load static %}
|
|
|
|
|
|
|
|
<script type="text/javascript" src="/admin/jsi18n/"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/core.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/vendor/jquery/jquery.js' %}"></script>
|
|
|
|
<script type="text/javascript" src="{% static 'admin/js/jquery.init.js' %}"></script>
|
|
|
|
|
|
|
|
{{ form.media }}
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/base.css' %}" />
|
|
|
|
<link rel="stylesheet" type="text/css" href="{% static 'admin/css/widgets.css' %}" />
|
|
|
|
|
2020-10-06 11:10:45 +02:00
|
|
|
{% load i18n %}
|
|
|
|
{% block content %}
|
2020-11-02 12:21:41 +01:00
|
|
|
<center>
|
|
|
|
<img src="{% static 'input/logo.png' %}" />
|
2020-10-27 14:35:31 +01:00
|
|
|
<p>Schritt {{ wizard.steps.step1 }} von {{ wizard.steps.count }}</p>
|
2020-10-06 11:10:45 +02:00
|
|
|
<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 %}
|
2020-10-27 14:35:31 +01:00
|
|
|
<button formnovalidate="formnovalidate" name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">{% trans "Zurück" %}</button>
|
2020-10-06 11:10:45 +02:00
|
|
|
{% endif %}
|
2020-10-27 14:35:31 +01:00
|
|
|
<input type="submit" value="{% trans "Abschicken" %}"/>
|
2020-10-06 11:10:45 +02:00
|
|
|
</form>
|
2020-11-02 12:21:41 +01:00
|
|
|
</center>{% endblock %}
|