barred unconfirmed people from confirming, and added one more exception/special request.
--- a/sdi/views.py Wed Aug 04 12:37:43 2010 +0530
+++ b/sdi/views.py Wed Aug 04 19:22:25 2010 +0530
@@ -229,8 +229,8 @@
elif status != "2":
raise Http404
- special_request = [150,151]
- if int(uid) < 157 and int(uid) not in special_request:
+ special_request = [150,151,175]
+ if int(uid) < 229 and int(uid) not in special_request:
return render_to_response("late_for_confirmation.html", {"user":user})
participant_info = ParticipantInfo()