author | Madhusudan.C.S <madhusudancs@gmail.com> |
Mon, 10 Aug 2009 00:06:31 +0530 | |
changeset 24 | 7257b66a6766 |
parent 23 | 91cf6872d853 |
child 26 | 97bd3c28c957 |
permissions | -rw-r--r-- |
0 | 1 |
"""This module contains the views for the project's proposal |
2 |
funded by NME through ICT. |
|
3 |
""" |
|
4 |
||
5 |
||
6 |
__authors__ = [ |
|
7 |
'"Madhusudan.C.S" <madhusudancs@gmail.com>', |
|
8 |
] |
|
9 |
||
10 |
||
23
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
11 |
import json |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
12 |
import os |
0 | 13 |
import time |
14 |
||
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
15 |
from django.core.urlresolvers import reverse |
22 | 16 |
from django.http import HttpResponse |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
17 |
from django.http import HttpResponseRedirect |
8
294ff7ac9cb6
Added new set of files.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
6
diff
changeset
|
18 |
from django.shortcuts import render_to_response |
6 | 19 |
from django.template import RequestContext |
0 | 20 |
|
21 |
from projrev.models import Project |
|
22 |
from projrev.models import Proposal |
|
5
88ae12bc6280
Access check helper file added.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
4
diff
changeset
|
23 |
from projrev.views.helpers import access |
0 | 24 |
from projrev.views.helpers import forms as projrev_forms |
25 |
||
5
88ae12bc6280
Access check helper file added.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
4
diff
changeset
|
26 |
|
12 | 27 |
@access.register('proposer') |
6 | 28 |
@access.checkAccess |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
29 |
def getMicr(request): |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
30 |
"""View to get MICR Code from the user. |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
31 |
""" |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
32 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
33 |
if request.method == 'POST': |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
34 |
post_params = request.POST |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
35 |
submit = post_params.get('submit') |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
36 |
if submit == 'New Proposal': |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
37 |
return HttpResponseRedirect( |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
38 |
reverse('app.projrev.views.proposal.submit')) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
39 |
else: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
40 |
micr_code = request.POST.get('micr_code') |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
41 |
if micr_code: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
42 |
try: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
43 |
Project.objects.get(micr_code=micr_code) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
44 |
except Project.DoesNotExist: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
45 |
if (submit == 'Edit Proposal for MICR Code' or |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
46 |
submit == 'Withdraw Proposal for MICR Code'): |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
47 |
template = 'projrev/proposal/get_micr.html' |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
48 |
context = { |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
49 |
'error': True, |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
50 |
} |
6 | 51 |
return render_to_response(template, |
52 |
RequestContext(request, context)) |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
53 |
else: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
54 |
if submit == 'Edit Proposal for MICR Code': |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
55 |
return HttpResponseRedirect( |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
56 |
reverse('app.projrev.views.proposal.submit', |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
57 |
args=(micr_code, ))) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
58 |
elif submit == 'Withdraw Proposal for MICR Code': |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
59 |
return HttpResponseRedirect( |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
60 |
reverse('app.projrev.views.proposal.withdraw', |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
61 |
args=(micr_code, ))) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
62 |
else: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
63 |
template = 'projrev/proposal/get_micr.html' |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
64 |
context = {} |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
65 |
|
6 | 66 |
return render_to_response(template, RequestContext(request, context)) |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
67 |
|
12 | 68 |
@access.register('proposer') |
6 | 69 |
@access.checkAccess |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
70 |
def submit(request, micr_code=None): |
0 | 71 |
"""View for proposal submission. |
72 |
""" |
|
73 |
||
74 |
if request.method == 'POST': |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
75 |
return submitPost(request, micr_code) |
0 | 76 |
else: |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
77 |
return submitGet(request, micr_code) |
0 | 78 |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
79 |
def submitPost(request, micr_code=None): |
0 | 80 |
"""Handles POST request for the submitted proposal form. |
81 |
""" |
|
82 |
||
83 |
prop_form = projrev_forms.ProposalForm(request.POST, request.FILES) |
|
84 |
||
85 |
project = None |
|
86 |
proposal = None |
|
87 |
||
88 |
if prop_form.is_valid(): |
|
89 |
cleaned_data = prop_form.cleaned_data |
|
90 |
||
13 | 91 |
if micr_code: |
92 |
project = Project.objects.get(micr_code=micr_code) |
|
93 |
project.line_item = Project.getLineItem(cleaned_data['line_item']) |
|
94 |
project.institution = cleaned_data['institution'] |
|
95 |
project.state = Project.getState(cleaned_data['state']) |
|
96 |
project.district = Project.getDistrict(cleaned_data['district']) |
|
97 |
else: |
|
98 |
# Generate MICR code |
|
21
153db75bb515
Changed data models to all new data.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
19
diff
changeset
|
99 |
cleaned_data['micr_code'] = '%s%s%d' % ( |
153db75bb515
Changed data models to all new data.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
19
diff
changeset
|
100 |
cleaned_data['district'], cleaned_data['line_item'], |
13 | 101 |
int(time.time() * 1000) % 1000000000) |
0 | 102 |
|
13 | 103 |
cleaned_data['line_item'] = Project.getLineItem(cleaned_data['line_item']) |
104 |
cleaned_data['state'] = Project.getState(cleaned_data['state']) |
|
105 |
cleaned_data['district'] = Project.getDistrict(cleaned_data['district']) |
|
106 |
||
107 |
prop_form.cleaned_data = cleaned_data |
|
0 | 108 |
|
13 | 109 |
# If the form is valid create a new project or update the project |
110 |
# if it already exists from the form. |
|
111 |
project = prop_form.save() |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
112 |
|
13 | 113 |
project.micr_code = cleaned_data['micr_code'] |
0 | 114 |
|
18
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
115 |
subject = "[Sakshath] MICR Code of the new proposal submitted" |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
116 |
message = """Hi, |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
117 |
We have received a new proposal for National Mission on education from your, |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
118 |
email address "%s", to the http://sakshath.ac.in portal. The MICR Code of the |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
119 |
submitted proposal is: |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
120 |
MICR Code: %s |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
121 |
|
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
122 |
Please remember this code for all future references. |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
123 |
|
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
124 |
|
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
125 |
-- |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
126 |
Regards, |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
127 |
Saksath admin""" % (request.user.username, project.micr_code) |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
128 |
|
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
129 |
request.user.email_user(subject=subject, message=message) |
05b9e60e6a10
Changed CSS and removed Withdraw proposal.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
16
diff
changeset
|
130 |
|
0 | 131 |
project.status = 'new' |
13 | 132 |
micr_code = project.micr_code |
0 | 133 |
|
134 |
project.save() |
|
135 |
||
13 | 136 |
if prop_form.cleaned_data['document']: |
137 |
# Create a proposal for the project. |
|
138 |
proposal = project.proposal_set.create( |
|
139 |
document=prop_form.cleaned_data['document'], |
|
140 |
submitted_by=request.user, rev_num = 0) |
|
0 | 141 |
|
13 | 142 |
proposal.save() |
0 | 143 |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
144 |
return HttpResponseRedirect( |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
145 |
reverse('app.projrev.views.proposal.submit', args=(micr_code,))) |
0 | 146 |
|
19 | 147 |
return submitGet(request, micr_code, prop_form) |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
148 |
|
19 | 149 |
def submitGet(request, micr_code=None, prop_form=None): |
0 | 150 |
"""Handles GET request for the submission of proposal form. |
151 |
""" |
|
152 |
||
153 |
context = {} |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
154 |
project = None |
0 | 155 |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
156 |
if micr_code: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
157 |
project = Project.objects.get(micr_code=micr_code) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
158 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
159 |
if project: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
160 |
initial_vals = { |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
161 |
'line_item': Project.getLineItemCode(project.line_item), |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
162 |
'state': Project.getStateCode(project.state), |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
163 |
'district': Project.getDistrictCode(project.district), |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
164 |
} |
19 | 165 |
if not prop_form: |
166 |
prop_form = projrev_forms.ProposalForm( |
|
167 |
initial=initial_vals, instance=project) |
|
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
168 |
|
13 | 169 |
proposal = project.proposal_set.all().order_by('-submitted_on')[0] |
170 |
||
171 |
if proposal: |
|
172 |
proposal_path = str(proposal.document) |
|
0 | 173 |
|
13 | 174 |
proposal_name = proposal_path.split('/')[-1] |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
175 |
|
13 | 176 |
context['proposal_path'] = proposal_path |
177 |
context['proposal_name'] = proposal_name |
|
14 | 178 |
context['last_submitted'] = proposal.submitted_on |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
179 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
180 |
if 'HTTP_REFERER' in request.META: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
181 |
referer = request.META['HTTP_REFERER'].split('/') |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
182 |
if referer[-1]: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
183 |
ref = referer[-1] |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
184 |
else: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
185 |
ref = referer[-2] |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
186 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
187 |
if ref == 'create': |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
188 |
context['created_now'] = True |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
189 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
190 |
context['micr_code'] = project.micr_code |
13 | 191 |
|
192 |
reviews = project.review_set.all().order_by('-reviewed_on') |
|
193 |
if reviews: |
|
194 |
context['last_reviewed'] = reviews[0].reviewed_on |
|
195 |
context['nr_reviews'] = len(reviews) |
|
196 |
||
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
197 |
else: |
19 | 198 |
if not prop_form: |
22 | 199 |
|
19 | 200 |
prop_form = projrev_forms.ProposalForm() |
0 | 201 |
|
202 |
context['form'] = prop_form |
|
203 |
||
204 |
template = 'projrev/proposal/submit.html' |
|
205 |
||
6 | 206 |
return render_to_response(template, RequestContext(request, context)) |
0 | 207 |
|
12 | 208 |
@access.register('proposer') |
6 | 209 |
@access.checkAccess |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
210 |
def withdraw(request, micr_code=None): |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
211 |
"""View Method for withdrawal of proposal. |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
212 |
""" |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
213 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
214 |
if micr_code: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
215 |
project = Project.objects.get(micr_code=micr_code) |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
216 |
if project: |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
217 |
project.status = 'invalid' |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
218 |
project.save() |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
219 |
context = { |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
220 |
'withdrawn': True, |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
221 |
} |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
222 |
|
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
223 |
template = 'projrev/proposal/withdraw.html' |
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
224 |
|
6 | 225 |
return render_to_response(template, RequestContext(request, context)) |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
226 |
|
12 | 227 |
@access.register('reviewer') |
6 | 228 |
@access.checkAccess |
0 | 229 |
def review(request, micr_code=None): |
4
8d9da911ed7d
Withdraw of proposals.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
0
diff
changeset
|
230 |
"""View for reviewing the proposal. |
0 | 231 |
""" |
232 |
||
233 |
if request.method == 'POST': |
|
234 |
return reviewPost(request, micr_code) |
|
235 |
else: |
|
236 |
return reviewGet(request, micr_code) |
|
237 |
||
238 |
def reviewPost(request, micr_code=None): |
|
239 |
""" |
|
240 |
""" |
|
241 |
||
242 |
rev_form = projrev_forms.ReviewForm(request.POST) |
|
243 |
||
244 |
if rev_form.is_valid(): |
|
245 |
cleaned_data = rev_form.cleaned_data |
|
246 |
||
247 |
cleaned_data['project'] = Project.objects.get(micr_code=micr_code) |
|
248 |
||
249 |
# If the form is valid create a new project or update the project |
|
250 |
# if it already exists from the form. |
|
251 |
review = rev_form.save() |
|
252 |
||
253 |
return reviewGet(request, micr_code, rev_form) |
|
254 |
||
255 |
def reviewGet(request, micr_code=None, rev_form=None): |
|
256 |
""" |
|
257 |
""" |
|
258 |
||
14 | 259 |
context = {} |
260 |
||
0 | 261 |
if not micr_code: |
262 |
template = 'projrev/proposal/list.html' |
|
16
bed14c9685a5
Project model changes.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
15
diff
changeset
|
263 |
context['projects'] = Project.objects.all().exclude( |
bed14c9685a5
Project model changes.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
15
diff
changeset
|
264 |
status__exact='invalid').order_by('-last_updated_on') |
14 | 265 |
context['row_url'] = '/proposal/review/' |
0 | 266 |
|
6 | 267 |
return render_to_response(template, RequestContext(request, context)) |
0 | 268 |
|
269 |
if not rev_form: |
|
270 |
rev_form = projrev_forms.ReviewForm() |
|
271 |
||
14 | 272 |
project = Project.objects.get(micr_code=micr_code) |
273 |
context['form'] = rev_form |
|
274 |
context['project'] = project |
|
0 | 275 |
|
14 | 276 |
proposal = project.proposal_set.all().order_by('-submitted_on')[0] |
277 |
||
278 |
if proposal: |
|
279 |
proposal_path = str(proposal.document) |
|
0 | 280 |
|
14 | 281 |
proposal_name = proposal_path.split('/')[-1] |
282 |
||
283 |
context['proposal_path'] = proposal_path |
|
284 |
context['proposal_name'] = proposal_name |
|
285 |
context['last_submitted'] = proposal.submitted_on |
|
286 |
||
287 |
reviews = project.review_set.all().order_by('-reviewed_on') |
|
288 |
if reviews: |
|
289 |
context['last_reviewed'] = reviews[0].reviewed_on |
|
290 |
context['nr_reviews'] = len(reviews) |
|
0 | 291 |
|
292 |
template = 'projrev/proposal/review.html' |
|
293 |
||
6 | 294 |
return render_to_response(template, RequestContext(request, context)) |
0 | 295 |
|
12 | 296 |
@access.register('reviewer') |
6 | 297 |
@access.checkAccess |
0 | 298 |
def rank(request, micr_code=None): |
299 |
""" |
|
300 |
""" |
|
301 |
||
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
302 |
context = {} |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
303 |
|
0 | 304 |
if not micr_code: |
305 |
template = 'projrev/proposal/list.html' |
|
16
bed14c9685a5
Project model changes.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
15
diff
changeset
|
306 |
context['projects'] = Project.objects.all().exclude( |
bed14c9685a5
Project model changes.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
15
diff
changeset
|
307 |
status__exact='invalid').order_by('-last_updated_on') |
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
308 |
context['row_url'] = '/proposal/rank/' |
0 | 309 |
|
6 | 310 |
return render_to_response(template, RequestContext(request, context)) |
0 | 311 |
|
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
312 |
project = Project.objects.get(micr_code=micr_code) |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
313 |
|
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
314 |
proposal = project.proposal_set.all().order_by('-submitted_on')[0] |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
315 |
|
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
316 |
if proposal: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
317 |
proposal_path = str(proposal.document) |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
318 |
|
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
319 |
proposal_name = proposal_path.split('/')[-1] |
0 | 320 |
|
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
321 |
context['proposal_path'] = proposal_path |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
322 |
context['proposal_name'] = proposal_name |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
323 |
context['last_submitted'] = proposal.submitted_on |
0 | 324 |
|
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
325 |
reviews = project.review_set.all().order_by('-reviewed_on') |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
326 |
nr_reviews = len(reviews) |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
327 |
if reviews: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
328 |
context['last_reviewed'] = reviews[0].reviewed_on |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
329 |
context['nr_reviews'] = nr_reviews |
0 | 330 |
|
331 |
review_score = [0] * 9 |
|
332 |
for review in reviews: |
|
333 |
review_score[0] += review.attribute1 |
|
334 |
review_score[1] += review.attribute2 |
|
335 |
review_score[2] += review.attribute3 |
|
336 |
review_score[3] += review.attribute4 |
|
337 |
review_score[4] += review.attribute5 |
|
338 |
review_score[5] += review.attribute6 |
|
339 |
review_score[6] += review.attribute7 |
|
340 |
review_score[7] += review.attribute8 |
|
341 |
review_score[8] += review.attribute9 |
|
342 |
||
343 |
total_score = sum(review_score) |
|
344 |
||
15
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
345 |
review_avg = [0] * 9 |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
346 |
for i, rs in enumerate(review_score): |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
347 |
try: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
348 |
review_avg[i] = float(rs) / nr_reviews |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
349 |
except ZeroDivisionError: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
350 |
review_avg[i] = 0 |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
351 |
|
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
352 |
try: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
353 |
total_avg = float(total_score) / nr_reviews |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
354 |
except ZeroDivisionError: |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
355 |
total_avg = 0 |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
356 |
|
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
357 |
context['project'] = project |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
358 |
context['review_score'] = review_score |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
359 |
context['total_score'] = total_score |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
360 |
context['review_avg'] = review_avg |
8c9e6c98de82
Ranking of proposals view completion.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
14
diff
changeset
|
361 |
context['total_avg'] = total_avg |
0 | 362 |
|
363 |
template = 'projrev/proposal/rank.html' |
|
364 |
||
6 | 365 |
return render_to_response(template, RequestContext(request, context)) |
22 | 366 |
|
367 |
def getDistrictsForState(request): |
|
368 |
"""View function that sends the districts for the given state code via AJAXy. |
|
369 |
""" |
|
23
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
370 |
|
22 | 371 |
get_params = request.GET |
23
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
372 |
if get_params: |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
373 |
st_code = get_params['_value'] |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
374 |
dt_dict = Project.DISTRICT_CHOICES |
22 | 375 |
|
23
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
376 |
# Get the Districts corresponding to the given State code. |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
377 |
dt_names = {} |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
378 |
count = 1 |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
379 |
for dt_code in dt_dict: |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
380 |
if dt_code[:2] == st_code: |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
381 |
dt_names[dt_code] = dt_dict[dt_code] |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
382 |
count += 1 |
22 | 383 |
|
23
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
384 |
# Sort the List based on District Name. |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
385 |
dt_send = [{'': "---------" }] |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
386 |
dt_names_sorted = sorted(dt_names.items(), key=lambda (k,v): (v,k)) |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
387 |
for dt_code, dt_name in dt_names_sorted: |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
388 |
dt_send.append({dt_code: dt_name}) |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
389 |
|
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
390 |
return HttpResponse(json.dumps(dt_send)) |
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
391 |
|
91cf6872d853
Add jqeury purr plugin for help text.
Madhusudan.C.S <madhusudancs@gmail.com>
parents:
22
diff
changeset
|
392 |
return HttpResponse(None) |