project/templates/registration/regstats.html
author Anoop Jacob Thomas<anoop@fossee.in>
Tue, 09 Nov 2010 12:44:24 +0530
changeset 208 d5cfc76051ed
parent 195 ec3f4b2e8d37
child 253 09ec121a7ebf
permissions -rw-r--r--
changed organizers page and the schedule with PR.

{% 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 %}