project/templates/registration/regstats.html
author Madhusudan.C.S <madhusudancs@gmail.com>
Tue, 16 Nov 2010 18:33:10 +0530
branchpayments
changeset 267 efdc1fa99ef7
parent 253 09ec121a7ebf
child 342 21dc37050a37
permissions -rw-r--r--
Convert multiple conditions to nested if in template since Django has a bug with conditionals in templates.

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