summaryrefslogtreecommitdiff
path: root/project/templates/registration/regstats.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/regstats.html
downloadscipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.tar.gz
scipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.tar.bz2
scipywebsite-7e38fd922a8dd4742d09758cd1c94fb0302045d3.zip
Reboot for scipy 2012
Diffstat (limited to 'project/templates/registration/regstats.html')
-rw-r--r--project/templates/registration/regstats.html45
1 files changed, 45 insertions, 0 deletions
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 %}
+<h1>Registration Statistics</h1>
+
+<table class="scipycon-default-border">
+<tr>
+ <th>Event</th>
+ <th>Number of people registered</th>
+</tr>
+<tr>
+ <td>Conference</td>
+ <td>{{ conf_num }}</td>
+</tr>
+<tr>
+ <td>Tutorials</td>
+ <td>{{ tut_num }}</td>
+</tr>
+<tr>
+ <td>Sprint</td>
+ <td>{{ sprint_num }}</td>
+</tr>
+<tr>
+ <td>Male participants requesting accommodation</td>
+ <td>{{ male }}</td>
+</tr>
+<tr>
+ <td>Female participants requesting accommodation</td>
+ <td>{{ female }}</td>
+</tr>
+{% for acco in acco_days %}
+ <tr>
+ <td>Accommodation requested on {{ forloop.counter|add:"11" }}th night</td>
+ <td>{{ acco.total }} (Male: {{ acco.male }} Female: {{ acco.female }})</td>
+ </tr>
+ {% endfor %}
+</table>
+
+<br/><br/><br/>
+<strong>To download CSV Click
+<a href="{% url scipycon_regstats_download params.scope %}">here</a></strong>
+
+{% endblock content %}