summaryrefslogtreecommitdiff
path: root/project/templates/registration/registrations.html
diff options
context:
space:
mode:
authorParth Buch2012-08-28 17:03:37 +0530
committerParth Buch2012-08-28 17:03:37 +0530
commit7e38fd922a8dd4742d09758cd1c94fb0302045d3 (patch)
treeb43d6ea8c47fb80e09e5e0bfd8759ac7d697addf /project/templates/registration/registrations.html
downloadscipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.tar.gz
scipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.tar.bz2
scipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.zip
Reboot for scipy 2012
Diffstat (limited to 'project/templates/registration/registrations.html')
-rw-r--r--project/templates/registration/registrations.html33
1 files changed, 33 insertions, 0 deletions
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 %}
+
+<h1>Registration Statistics</h1>
+
+ {% if over_reg %}
+ <div class="notice">
+ 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.
+ </div>
+ {% endif %}
+
+<p>
+ Currently <strong>{{ registrations }}</strong> people have registered
+ to attend {{ event.get_full_name }}.
+</p>
+
+{% if not registration %}
+ <p>
+ To attend {{ event.get_full_name }} please <a href="
+ {% url scipycon_submit_registration params.scope %}">register</a>
+ </p>
+{% endif %}
+
+{% endblock %}