sdi/views.py
branchanoop
changeset 205 3381ac722e36
parent 202 9ee78481e7cd
child 206 f2d738abba0d
equal deleted inserted replaced
204:a190811581a8 205:3381ac722e36
   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     if int(uid) < 157:
   232     if int(uid) < 157 and (int(uid)!=150 or int(uid)!=151):
   233         return render_to_response("late_for_confirmation.html", {"user":user})
   233         return render_to_response("late_for_confirmation.html", {"user":user})
   234 
   234 
   235     participant_info = ParticipantInfo()
   235     participant_info = ParticipantInfo()
   236     participant_info.participant = user
   236     participant_info.participant = user
   237 
   237