summaryrefslogtreecommitdiff
path: root/django/contrib/formtools/templates/formtools/form.html
blob: 90da8b2b2bc21e6619ff1ebc85433946c40c4bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{% extends "base.html" %}

{% block content %}

{% if form.errors %}<h1>Please correct the following errors</h1>{% else %}<h1>Submit</h1>{% endif %}

<form action="" method="post">
<table>
{{ form }}
</table>
<input type="hidden" name="{{ stage_field }}" value="1" />
<p><input type="submit" value="Submit" /></p>
</form>

{% endblock %}