diff options
author | Primal Pappachan | 2012-03-26 01:52:31 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-03-26 01:52:31 +0530 |
commit | 48ebae3d816d0da8648124b2ff46cf4295e827fb (patch) | |
tree | 55b023d2b736fee12a59c0a2630dbe4631029b38 | |
parent | 64d5a67ac17ab0d92ce7cd73f20de9bfec57d310 (diff) | |
download | aloha-48ebae3d816d0da8648124b2ff46cf4295e827fb.tar.gz aloha-48ebae3d816d0da8648124b2ff46cf4295e827fb.tar.bz2 aloha-48ebae3d816d0da8648124b2ff46cf4295e827fb.zip |
Added the Details Template
-rw-r--r-- | template/allotter/details.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/template/allotter/details.html b/template/allotter/details.html new file mode 100644 index 0000000..5beeb85 --- /dev/null +++ b/template/allotter/details.html @@ -0,0 +1,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 %} |