equal
deleted
inserted
replaced
232 if status == "3": |
232 if status == "3": |
233 return render_to_response("attending_sgd.html", {"user":user}) |
233 return render_to_response("attending_sgd.html", {"user":user}) |
234 elif status != "2": |
234 elif status != "2": |
235 raise Http404 |
235 raise Http404 |
236 |
236 |
237 special_request = [150,151,175,195] |
237 special_request = [150,151,175,195,189] |
238 if int(uid) < 229 and int(uid) not in special_request: |
238 if int(uid) < 229 and int(uid) not in special_request: |
239 return render_to_response("late_for_confirmation.html", {"user":user}) |
239 return render_to_response("late_for_confirmation.html", {"user":user}) |
240 |
240 |
241 participant_info = ParticipantInfo() |
241 participant_info = ParticipantInfo() |
242 participant_info.participant = user |
242 participant_info.participant = user |