Add the tempalte to display registration details.
authorMadhusudan.C.S <madhusudancs@gmail.com>
Tue, 02 Nov 2010 22:32:53 +0530
changeset 195 ec3f4b2e8d37
parent 194 808abc104b55
child 196 d6b0220e37ab
Add the tempalte to display registration details.
project/templates/registration/regstats.html
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/project/templates/registration/regstats.html	Tue Nov 02 22:32:53 2010 +0530
@@ -0,0 +1,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 %}