summaryrefslogtreecommitdiff
path: root/project/templates/registration/regstats.html
diff options
context:
space:
mode:
Diffstat (limited to 'project/templates/registration/regstats.html')
-rw-r--r--project/templates/registration/regstats.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html
new file mode 100644
index 0000000..e1a0736
--- /dev/null
+++ b/project/templates/registration/regstats.html
@@ -0,0 +1,26 @@
+{% 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>
+</table>
+{% endblock content %}