blob: 5beeb852af97bff901c20d44c339341b6316933e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{% extends "base.html" %}
{% block title %}Details form {% endblock %}
{% block content %}
Please provide the following details.
<form action="/allotter/details/" method="post">
{% csrf_token %}
<table>
{{ form.as_table }}
</table>
<h2> These details cannot be changed once entered. </h2>
<input type="submit" value="Submit" />
</form>
{% endblock content %}
|