summaryrefslogtreecommitdiff
path: root/template/allotter/details.html
diff options
context:
space:
mode:
authorparth2012-03-27 11:00:57 +0530
committerparth2012-03-27 11:00:57 +0530
commit9e3883ae5772cacfdaefcfe1b23844347dac4d25 (patch)
treee30b06cea5038060ad070ce5fb8428526712e4bd /template/allotter/details.html
parent8dd719baef1e7bf423b26028d6e3fb7b708a8f33 (diff)
downloadaloha-9e3883ae5772cacfdaefcfe1b23844347dac4d25.tar.gz
aloha-9e3883ae5772cacfdaefcfe1b23844347dac4d25.tar.bz2
aloha-9e3883ae5772cacfdaefcfe1b23844347dac4d25.zip
added bootstrap to details form
Diffstat (limited to 'template/allotter/details.html')
-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 %}