From 7ee4bbddaa6836f58183a7699f1d3d829f2cc150 Mon Sep 17 00:00:00 2001 From: Primal Pappachan Date: Wed, 7 Mar 2012 21:02:05 +0530 Subject: added application template --- template/allotter/apply.html | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 template/allotter/apply.html (limited to 'template') diff --git a/template/allotter/apply.html b/template/allotter/apply.html new file mode 100644 index 0000000..f397cb9 --- /dev/null +++ b/template/allotter/apply.html @@ -0,0 +1,27 @@ +{% extends "base.html" %} + +{% block title %}Application form {% endblock %} + +{% block content %} +Choose the options as per your preference + +

{{user.first_name}} {{user.last_name}}

+ +

{{subject}}

+ +
+{% csrf_token %} + +{% for option in options %} +{{option.opt_name}}
+{% endfor %} + + +
+ +
+{% csrf_token %} + +
+ +{% endblock content %} -- cgit