From 7e38fd922a8dd4742d09758cd1c94fb0302045d3 Mon Sep 17 00:00:00 2001 From: Parth Buch Date: Tue, 28 Aug 2012 17:03:37 +0530 Subject: Reboot for scipy 2012 --- project/templates/registration/registrations.html | 33 +++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 project/templates/registration/registrations.html (limited to 'project/templates/registration/registrations.html') diff --git a/project/templates/registration/registrations.html b/project/templates/registration/registrations.html new file mode 100644 index 0000000..e15a4a1 --- /dev/null +++ b/project/templates/registration/registrations.html @@ -0,0 +1,33 @@ +{% extends "base.html" %} + +{% block title %} +Registrations +{% endblock %} + +{% block content %} + +

Registration Statistics

+ + {% if over_reg %} +
+ We have already reached the total number of registrations for the + conference. If you would like to be put on a waiting list in the event + that someone can't make it to the conference, please follow the link + below to register and we will be in contact if a registration spot comes + available. +
+ {% endif %} + +

+ Currently {{ registrations }} people have registered + to attend {{ event.get_full_name }}. +

+ +{% if not registration %} +

+ To attend {{ event.get_full_name }} please register +

+{% endif %} + +{% endblock %} -- cgit