sdi/views.py
branchanoop
changeset 210 9dde8b1de561
parent 206 f2d738abba0d
child 211 a098e677b5a0
equal deleted inserted replaced
209:4bcf2a589038 210:9dde8b1de561
   227     if status == "3":
   227     if status == "3":
   228         return render_to_response("attending_sgd.html", {"user":user})
   228         return render_to_response("attending_sgd.html", {"user":user})
   229     elif status != "2":
   229     elif status != "2":
   230         raise Http404
   230         raise Http404
   231 
   231 
   232     special_request = [150,151]
   232     special_request = [150,151,175]
   233     if int(uid) < 157 and int(uid) not in special_request:
   233     if int(uid) < 229 and int(uid) not in special_request:
   234         return render_to_response("late_for_confirmation.html", {"user":user})
   234         return render_to_response("late_for_confirmation.html", {"user":user})
   235 
   235 
   236     participant_info = ParticipantInfo()
   236     participant_info = ParticipantInfo()
   237     participant_info.participant = user
   237     participant_info.participant = user
   238 
   238