summaryrefslogtreecommitdiff
path: root/project/templates
diff options
context:
space:
mode:
authorMadhusudan.C.S2010-11-02 22:32:53 +0530
committerMadhusudan.C.S2010-11-02 22:32:53 +0530
commit34ad0ece43dd6c3ad01fc4d3fccec5c0f024ed94 (patch)
tree5aa039386fcc8c7bfdd00ce37d282ffd330891e1 /project/templates
parenta4b98641550159436c47b039b84788214f89cebf (diff)
downloadscipycon-34ad0ece43dd6c3ad01fc4d3fccec5c0f024ed94.tar.gz
scipycon-34ad0ece43dd6c3ad01fc4d3fccec5c0f024ed94.tar.bz2
scipycon-34ad0ece43dd6c3ad01fc4d3fccec5c0f024ed94.zip
Add the tempalte to display registration details.
Diffstat (limited to 'project/templates')
-rw-r--r--project/templates/registration/regstats.html26
1 files changed, 26 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html
new file mode 100644
index 0000000..e1a0736
--- /dev/null
+++ b/project/templates/registration/regstats.html
@@ -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 %}