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/regstats.html | 45 ++++++++++++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 project/templates/registration/regstats.html (limited to 'project/templates/registration/regstats.html') diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html new file mode 100644 index 0000000..a0b3786 --- /dev/null +++ b/project/templates/registration/regstats.html @@ -0,0 +1,45 @@ +{% extends "base.html" %} + +{% block title %}Registration Statistics - {% endblock %} + +{% block content %} +

Registration Statistics

+ + + + + + + + + + + + + + + + + + + + + + + + + + +{% for acco in acco_days %} + + + + + {% endfor %} +
EventNumber of people registered
Conference{{ conf_num }}
Tutorials{{ tut_num }}
Sprint{{ sprint_num }}
Male participants requesting accommodation{{ male }}
Female participants requesting accommodation{{ female }}
Accommodation requested on {{ forloop.counter|add:"11" }}th night{{ acco.total }} (Male: {{ acco.male }} Female: {{ acco.female }})
+ +


+To download CSV Click +here + +{% endblock content %} -- cgit