barred unconfirmed people from confirming, and added one more exception/special request. anoop
authoranoop
Wed, 04 Aug 2010 19:22:25 +0530
branchanoop
changeset 210 9dde8b1de561
parent 209 4bcf2a589038
child 211 a098e677b5a0
barred unconfirmed people from confirming, and added one more exception/special request.
sdi/views.py
--- 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()