From 64d5a67ac17ab0d92ce7cd73f20de9bfec57d310 Mon Sep 17 00:00:00 2001 From: Primal Pappachan Date: Sun, 25 Mar 2012 00:33:41 +0530 Subject: display of selected options, buttons for logging out, generating pdf and editing options --- template/allotter/complete.html | 51 +++++++++++++++++++++++++++++++++++------ 1 file changed, 44 insertions(+), 7 deletions(-) diff --git a/template/allotter/complete.html b/template/allotter/complete.html index e235772..799d965 100644 --- a/template/allotter/complete.html +++ b/template/allotter/complete.html @@ -5,20 +5,57 @@ {% block content %} -

Thank you, your following options have been saved to the database

- -{{first_paper}} - -{% for option in options_available_first %} -

{{ option.opt_name }}

+

The following options have been saved. Please verify them before logging out.

+ +

Please keep in mind that, the next time you login you will be redirected to this page straightaway.

+ +{% if options_chosen %} + + + + + + + + +{% for option in options_chosen %} + + + + + + {% endfor %} +

Programme Code

Programme Name

Insitute

Preference

{{ forloop.counter }}

{{ option.opt_code }}

{{ option.opt_name }}

{{ option.opt_location }}

+ {% if email %} -An email with all the options has been to the following email address: {{email}} +An email with the list of options has been sent {{ email }} for book-keeping purposes. + +{% endif %} + +{% else %} + +

No Options were chosen, Press Edit Options to go back and select options otherwise Press logout to exit the allotment process

{% endif %} +
+{% csrf_token %} + +
+ +
+{% csrf_token %} + +
+ +
+{% csrf_token %} + +
+ {% endblock content %} -- cgit