forked from beba/foerderbarometer
37 lines
1.2 KiB
HTML
37 lines
1.2 KiB
HTML
{% 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' %}" />
|
|
|
|
{% load i18n %}
|
|
{% block content %}
|
|
<center>
|
|
<img src="{% static 'input/logo.png' %}" />
|
|
<p>Schritt {{ wizard.steps.step1 }} von {{ wizard.steps.count }}</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 formnovalidate="formnovalidate" name="wizard_goto_step" type="submit" value="{{ wizard.steps.prev }}">Zurück</button>
|
|
{% endif %}
|
|
<button type="submit" value="{% trans "Abschicken" %}">Abschicken</button>
|
|
</form>
|
|
</center>{% endblock %}
|