project/templates/registration/regstats.html
author Amit Sethi
Wed, 01 Dec 2010 12:20:13 +0530
changeset 325 1255f442e4f8
parent 253 09ec121a7ebf
child 342 21dc37050a37
permissions -rw-r--r--
Some changes to font size on badge according to recommendation

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