# HG changeset patch # User anoop # Date 1280764417 -19800 # Node ID f2d738abba0d0a82c246bfd48850ba67a6c49cf9 # Parent 3381ac722e36be823d0866ee7abcbf0f1765084c made the previous feature more easier with lists. diff -r 3381ac722e36 -r f2d738abba0d sdi/views.py --- a/sdi/views.py Mon Aug 02 21:06:34 2010 +0530 +++ b/sdi/views.py Mon Aug 02 21:23:37 2010 +0530 @@ -229,7 +229,8 @@ elif status != "2": raise Http404 - if int(uid) < 157 and (int(uid)!=150 or int(uid)!=151): + special_request = [150,151] + if int(uid) < 157 and int(uid) not in special_request: return render_to_response("late_for_confirmation.html", {"user":user}) participant_info = ParticipantInfo()