equal
deleted
inserted
replaced
|
1 {% extends "base.html" %} |
|
2 |
|
3 {% block title %}Registration Statistics{% endblock %} |
|
4 |
|
5 {% block content %} |
|
6 <h1>Registration Statistics</h1> |
|
7 |
|
8 <table class="scipycon-default-border"> |
|
9 <tr> |
|
10 <th>Event</th> |
|
11 <th>Number of people registered</th> |
|
12 </tr> |
|
13 <tr> |
|
14 <td>Conference</td> |
|
15 <td>{{ conf_num }}</td> |
|
16 </tr> |
|
17 <tr> |
|
18 <td>Tutorials</td> |
|
19 <td>{{ tut_num }}</td> |
|
20 </tr> |
|
21 <tr> |
|
22 <td>Sprint</td> |
|
23 <td>{{ sprint_num }}</td> |
|
24 </tr> |
|
25 </table> |
|
26 {% endblock content %} |