author | nishanth |
Fri, 16 Jul 2010 19:02:14 +0530 | |
branch | anoop |
changeset 111 | 45f844723b7a |
parent 110 | 01b5184402c8 |
child 112 | 3cf5f668fca5 |
permissions | -rw-r--r-- |
15 | 1 |
from django.shortcuts import render_to_response, redirect |
98 | 2 |
from django.http import HttpResponse, Http404 |
65
0ca63c964237
now login is required for accessing stats and send_invi pages
nishanth
parents:
57
diff
changeset
|
3 |
from django.contrib.auth.decorators import login_required |
97 | 4 |
from django.utils.datastructures import MultiValueDictKeyError |
7 | 5 |
|
67 | 6 |
from django.contrib.auth import authenticate, login, logout |
7 |
||
7 | 8 |
from sage_days.sdi.models import Registrant |
90
1a6e1af98624
now selecting users through forms. created a form for that
nishanth
parents:
88
diff
changeset
|
9 |
from sage_days.sdi.forms import RegisterForm, SearchForm, EmailForm, LoginForm, UserSelectForm |
56 | 10 |
from sage_days.sdi.events import send_reg_complete_mail, mail_invi |
72 | 11 |
from sage_days.settings import APACHE_URL_PREFIX as aup |
7 | 12 |
|
13 |
def register(request): |
|
14 |
""" The user register page. |
|
15 |
""" |
|
16 |
||
9 | 17 |
if request.method == "POST": |
14 | 18 |
form = RegisterForm(request.POST) |
19 |
if form.is_valid(): |
|
15 | 20 |
form.save() |
53 | 21 |
|
22 |
data = form.cleaned_data |
|
23 |
first_name = data['first_name'] |
|
24 |
last_name = data['last_name'] |
|
25 |
email = data['email'] |
|
26 |
send_reg_complete_mail(email, first_name, last_name) |
|
27 |
||
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
25
diff
changeset
|
28 |
return redirect("/sage_days/registration/complete") |
14 | 29 |
else: |
30 |
return render_to_response("register.html", {"form":form}) |
|
9 | 31 |
else: |
32 |
form = RegisterForm() |
|
33 |
return render_to_response("register.html", {"form":form}) |
|
22 | 34 |
|
35 |
def reg_complete(request): |
|
36 |
""" Tell the registration is successful. |
|
37 |
""" |
|
38 |
||
39 |
return render_to_response("reg_complete.html") |
|
23 | 40 |
|
65
0ca63c964237
now login is required for accessing stats and send_invi pages
nishanth
parents:
57
diff
changeset
|
41 |
@login_required |
23 | 42 |
def list_stats(request): |
43 |
""" List the statiscs of registered participants. |
|
44 |
""" |
|
45 |
||
24
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
46 |
if request.method == "POST": |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
47 |
form = SearchForm(request.POST) |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
48 |
if form.is_valid(): |
25 | 49 |
data = form.cleaned_data |
79
064ff60025d9
removed the need_python_workshop and need_acco fields since they are very confusing
nishanth
parents:
77
diff
changeset
|
50 |
|
064ff60025d9
removed the need_python_workshop and need_acco fields since they are very confusing
nishanth
parents:
77
diff
changeset
|
51 |
#need_workshop = data['need_for_python_workshop'] |
064ff60025d9
removed the need_python_workshop and need_acco fields since they are very confusing
nishanth
parents:
77
diff
changeset
|
52 |
#acco_required = data['need_accomodation'] |
064ff60025d9
removed the need_python_workshop and need_acco fields since they are very confusing
nishanth
parents:
77
diff
changeset
|
53 |
#db_query = "Registrant.objects.filter(need_for_python_workshop=%s, acco_required=%s)"%(need_workshop, acco_required) |
064ff60025d9
removed the need_python_workshop and need_acco fields since they are very confusing
nishanth
parents:
77
diff
changeset
|
54 |
db_query = "Registrant.objects" |
25 | 55 |
|
56 |
topics_include, topics_exclude = data['topics_interested'] |
|
57 |
for number in topics_include: |
|
58 |
db_query += '.filter(topics_interested__contains="%s")'%number |
|
59 |
||
60 |
for number in topics_exclude: |
|
61 |
db_query += '.exclude(topics_interested__contains="%s")'%number |
|
62 |
||
63 |
start_python, stop_python = data['knowledge_of_python'] |
|
64 |
if start_python and stop_python: |
|
65 |
db_query += '.filter(knowledge_of_python__gte="%s")'%start_python |
|
66 |
db_query += '.filter(knowledge_of_python__lte="%s")'%stop_python |
|
67 |
elif start_python: |
|
68 |
db_query += '.filter(knowledge_of_python__exact="%s")'%start_python |
|
69 |
||
70 |
start_sage, stop_sage = data['knowledge_of_sage'] |
|
71 |
if start_sage and stop_sage: |
|
72 |
db_query += '.filter(knowledge_of_sage__gte="%s")'%start_sage |
|
73 |
db_query += '.filter(knowledge_of_sage__lte="%s")'%stop_sage |
|
74 |
elif start_sage: |
|
75 |
db_query += '.filter(knowledge_of_sage__exact="%s")'%start_sage |
|
76 |
||
77 |
start_likeliness, stop_likeliness = data['likeliness_of_attending'] |
|
78 |
if start_likeliness and stop_likeliness: |
|
79 |
db_query += '.filter(likeliness_of_attending__gte="%s")'%start_likeliness |
|
80 |
db_query += '.filter(likeliness_of_attending__lte="%s")'%stop_likeliness |
|
81 |
elif start_likeliness: |
|
82 |
db_query += '.filter(likeliness_of_attending__exact="%s")'%start_likeliness |
|
83 |
||
80
c200156c80a9
fixed a bug that arises when a query does not have any parameters to filter
nishanth
parents:
79
diff
changeset
|
84 |
db_query += ".all()" |
c200156c80a9
fixed a bug that arises when a query does not have any parameters to filter
nishanth
parents:
79
diff
changeset
|
85 |
|
25 | 86 |
matches = eval(db_query) |
87 |
return render_to_response("list_stats.html", {"form":form, 'matches':matches}) |
|
24
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
88 |
else: |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
89 |
return render_to_response("list_stats.html", {"form":form}) |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
90 |
else: |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
91 |
form = SearchForm() |
f79be1dd4a22
added clean methods for each attribute in search form
nishanth
parents:
23
diff
changeset
|
92 |
return render_to_response("list_stats.html", {"form":form}) |
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
25
diff
changeset
|
93 |
|
65
0ca63c964237
now login is required for accessing stats and send_invi pages
nishanth
parents:
57
diff
changeset
|
94 |
@login_required |
56 | 95 |
def send_invi(request): |
96 |
""" Take a list of csv email addresses and send mails to them. |
|
97 |
""" |
|
98 |
||
99 |
if request.method == "POST": |
|
100 |
form = EmailForm(request.POST) |
|
101 |
if form.is_valid(): |
|
102 |
to_emails = form.cleaned_data['emails'] |
|
103 |
mail_invi(to_emails) |
|
104 |
return render_to_response("send_invi.html", {"emails":to_emails}) |
|
105 |
else: |
|
106 |
return render_to_response("send_invi.html", {"form":form}) |
|
107 |
else: |
|
57 | 108 |
form = EmailForm() |
56 | 109 |
return render_to_response("send_invi.html", {"form":form}) |
110 |
||
86 | 111 |
@login_required |
112 |
def send_workshop_confirm(request): |
|
113 |
""" Show a list of all the ppl who requested for a workshop and |
|
114 |
send a confirmation mail to them if not sent. |
|
115 |
""" |
|
116 |
||
88 | 117 |
matches = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_workshop="1") |
86 | 118 |
if request.method == "POST": |
93
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
119 |
form = UserSelectForm(matches, request.POST) |
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
120 |
if form.is_valid(): |
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
121 |
selected_users = form.cleaned_data['selected_users'] |
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
122 |
return render_to_response("sent_wsp_confirm.html", {"selected_users":selected_users}) |
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
123 |
else: |
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
124 |
return render_to_response("send_workshop_confirm.html", {"matches":matches}) |
86 | 125 |
else: |
93
505989755cd8
modified the form and implemented the view to display selected users
nishanth
parents:
92
diff
changeset
|
126 |
return render_to_response("send_workshop_confirm.html", {"matches":matches}) |
86 | 127 |
|
108
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
128 |
@login_required |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
129 |
def send_sagedays_confirm(request): |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
130 |
""" filter out ppl depending on their status and display accordingly. |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
131 |
""" |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
132 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
133 |
attending_ppl = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_sagedays ="3") |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
134 |
not_confirmed_ppl = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_sagedays ="2") |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
135 |
not_selected_ppl = Registrant.objects.filter(need_for_python_workshop=True, registrantinfo__status_of_attending_sagedays ="1") |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
136 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
137 |
user_choices = list(attending_ppl) + list(not_confirmed_ppl) |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
138 |
form = UserSelectForm(user_choices, request.POST) |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
139 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
140 |
if request.method == "POST" and form.is_valid(): |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
141 |
pass |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
142 |
else: |
111 | 143 |
return render_to_response("send_sgd_cnf.html", {"attending":attending_ppl, |
108
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
144 |
"not_confirmed":not_confirmed_ppl, |
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
145 |
"not_selected":not_selected_ppl, |
110 | 146 |
}) |
108
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
147 |
|
9363e5121f9b
added the GET part of view for sending event confirmation emails
nishanth
parents:
107
diff
changeset
|
148 |
|
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
149 |
def confirm_wsp_participation(request, uid): |
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
150 |
""" match id versus email and take lappy details. |
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
151 |
""" |
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
152 |
|
99 | 153 |
try: |
154 |
email = request.GET['email'] |
|
155 |
except MultiValueDictKeyError: |
|
156 |
raise Http404 |
|
157 |
||
158 |
try: |
|
159 |
user = Registrant.objects.get(id=uid, email=email) |
|
160 |
except Registrant.DoesNotExist: |
|
161 |
raise Http404 |
|
162 |
||
100 | 163 |
user_info = user.registrantinfo_set.all()[0] |
164 |
status = user_info.status_of_attending_workshop |
|
99 | 165 |
if status == "3": |
166 |
return render_to_response("attending_wsp.html") |
|
167 |
elif status != "2": |
|
168 |
raise Http404 |
|
169 |
||
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
170 |
if request.method == "POST": |
104
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
171 |
try: |
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
172 |
has_laptop = request.POST['lap_status'] |
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
173 |
except MultiValueDictKeyError: |
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
174 |
return render_to_response("cnf_wsp_ptc.html", {"user":user}) |
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
175 |
|
106 | 176 |
user_info.status_of_attending_workshop = "3" |
107 | 177 |
user_info.has_laptop_for_workshop = True if has_laptop == "True" else False |
106 | 178 |
user_info.save() |
179 |
||
104
7630d7f3613a
added template for thanking for participation in workshop
nishanth
parents:
102
diff
changeset
|
180 |
return render_to_response("attending_wsp.html") |
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
181 |
else: |
102 | 182 |
return render_to_response("cnf_wsp_ptc.html", {"user":user}) |
95
ab554d46fd34
created basic view for confirmation of wsp participation
nishanth
parents:
93
diff
changeset
|
183 |
|
67 | 184 |
def admin_login(request): |
185 |
""" basic login. |
|
186 |
""" |
|
56 | 187 |
|
72 | 188 |
redirect_url = "/%s/registration/stats"%aup |
189 |
||
190 |
user = request.user |
|
191 |
if user.is_authenticated(): |
|
192 |
return redirect(redirect_url) |
|
193 |
||
67 | 194 |
if request.method == "POST": |
195 |
form = LoginForm(request.POST) |
|
196 |
if form.is_valid(): |
|
72 | 197 |
data = form.cleaned_data |
67 | 198 |
|
199 |
username = data['username'] |
|
200 |
password = data['password'] |
|
201 |
||
202 |
user = authenticate(username=username, password=password) |
|
203 |
login(request, user) |
|
72 | 204 |
return redirect(redirect_url) |
67 | 205 |
else: |
206 |
return render_to_response("login.html", {"form":form}) |
|
207 |
else: |
|
208 |
form = LoginForm() |
|
209 |
return render_to_response("login.html", {"form":form}) |
|
210 |
||
70 | 211 |
@login_required |
67 | 212 |
def admin_logout(request): |
213 |
""" simply logout. |
|
214 |
""" |
|
215 |
||
216 |
logout(request) |
|
217 |
return render_to_response("logout.html") |
|
56 | 218 |
|
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
25
diff
changeset
|
219 |
def homepage(request): |
91 | 220 |
return render_to_response("index.html") |
26
212fcba4459e
changed the app to work with apache + added base.html, and did needed changes.
anoop
parents:
25
diff
changeset
|
221 |
|
31 | 222 |
def schedule(request): |
91 | 223 |
return render_to_response("schedule.html") |
31 | 224 |
|
225 |
def organizers(request): |
|
91 | 226 |
return render_to_response("organizers.html") |
31 | 227 |
|
228 |
def venue(request): |
|
91 | 229 |
return render_to_response("about_venue.html") |
31 | 230 |
|
231 |
def contact(request): |
|
91 | 232 |
return render_to_response("contact.html") |
31 | 233 |
|
234 |
def about(request): |
|
91 | 235 |
return render_to_response("about.html") |
48
a3e6f9470549
made some changes to links and added accomodation page.
anoop
parents:
31
diff
changeset
|
236 |
|
a3e6f9470549
made some changes to links and added accomodation page.
anoop
parents:
31
diff
changeset
|
237 |
def accomodation(request): |
91 | 238 |
return render_to_response("accomodation.html") |
84 | 239 |
|
240 |
def about_mumbai(request): |
|
241 |
return render_to_response("about_mumbai.html") |
|
242 |
||
243 |
def reaching_iitb(request): |
|
244 |
return render_to_response("reaching_iitb.html") |
|
91 | 245 |
|
246 |
def talks_proposed(request): |
|
247 |
return render_to_response("talks_proposed.html") |