summaryrefslogtreecommitdiff
path: root/template/allotter
diff options
context:
space:
mode:
Diffstat (limited to 'template/allotter')
-rw-r--r--template/allotter/details.html19
1 files changed, 10 insertions, 9 deletions
diff --git a/template/allotter/details.html b/template/allotter/details.html
index 5beeb85..4d83a39 100644
--- a/template/allotter/details.html
+++ b/template/allotter/details.html
@@ -3,17 +3,18 @@
{% block title %}Details form {% endblock %}
{% block content %}
-Please provide the following details.
-<form action="/allotter/details/" method="post">
-{% csrf_token %}
+<h2>Please provide the following details.</h2>
+<div class="alert alert-block">
+<h4 class="alert-heading">Warning!</h4>
+These details cannot be changed once entered.
+</div>
-<table>
-{{ form.as_table }}
-</table>
+<hr/>
+
+
+{% load crispy_forms_tags %}
+{% crispy form %}
-<h2> These details cannot be changed once entered. </h2>
-<input type="submit" value="Submit" />
-</form>
{% endblock content %}