diff options
author | Primal Pappachan | 2012-03-27 14:56:23 +0530 |
---|---|---|
committer | Primal Pappachan | 2012-03-27 14:56:23 +0530 |
commit | 2a0e009c856b0ad8a28b613fcfde8f6cd92dca02 (patch) | |
tree | 2049a4187697b989382e3af2b65125b13a102222 /choice_seeker/template/allotter/details.html | |
parent | 8eba4c72a81176ba160e3e93e214acf28b9f376f (diff) | |
download | aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.gz aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.tar.bz2 aloha-2a0e009c856b0ad8a28b613fcfde8f6cd92dca02.zip |
Added buildout files
Diffstat (limited to 'choice_seeker/template/allotter/details.html')
-rw-r--r-- | choice_seeker/template/allotter/details.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/choice_seeker/template/allotter/details.html b/choice_seeker/template/allotter/details.html new file mode 100644 index 0000000..5beeb85 --- /dev/null +++ b/choice_seeker/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 %} |