blob: f73a36f425791c9b294fa9aafbd831a74dc40bc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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 %}
|