# HG changeset patch # User anoop # Date 1280587619 -19800 # Node ID e272a7fcdbaa54327a647a70c6a797bd9ae789f9 # Parent 16afdd7baa9d8b9c2830a84ee092956487b8da9d late confirmations will be redirected to a new page. diff -r 16afdd7baa9d -r e272a7fcdbaa sdi/views.py --- a/sdi/views.py Sat Jul 31 19:39:25 2010 +0530 +++ b/sdi/views.py Sat Jul 31 20:16:59 2010 +0530 @@ -229,6 +229,9 @@ elif status != "2": raise Http404 + if uid < 157: + return render_to_response("late_for_confirmation.html", {"user":user}) + participant_info = ParticipantInfo() participant_info.participant = user diff -r 16afdd7baa9d -r e272a7fcdbaa templates/late_for_confirmation.html --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/templates/late_for_confirmation.html Sat Jul 31 20:16:59 2010 +0530 @@ -0,0 +1,17 @@ +{% extends 'base.html' %} +{% block title %} +Sorry! you are late. +{% endblock %} +{% block content %} +You are late for confirmation, if you really want to attend Sage Days 25, send a mail to sagedays@fossee.in. +
+You request via mail will be considered only if any seat is vacant. You will receive a confirmation by mail, if you are selected. +{% if user.acco_required %} +
+Mostly you may have to arrange for accommodation yourself, as you are late in confirming. +
+{% endif %} +
+Please mail your queries (if any) to sagedays@fossee.in +{% endblock %} +