diff options
author | Madhusudan.C.S | 2010-12-09 19:33:57 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-12-09 19:33:57 +0530 |
commit | 4a14fb6f60217df994839f181a6f04bc04fbffea (patch) | |
tree | 087796e260b6902a974f48bfca55f2a21e048881 /project/templates/registration/regstats.html | |
parent | e1d04847c5646022657a12fbdf2717c2ad0bd43b (diff) | |
download | scipycon-4a14fb6f60217df994839f181a6f04bc04fbffea.tar.gz scipycon-4a14fb6f60217df994839f181a6f04bc04fbffea.tar.bz2 scipycon-4a14fb6f60217df994839f181a6f04bc04fbffea.zip |
Number of male and female participants requesting accommodation.
Diffstat (limited to 'project/templates/registration/regstats.html')
-rw-r--r-- | project/templates/registration/regstats.html | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html index accdaf6..b5aeeea 100644 --- a/project/templates/registration/regstats.html +++ b/project/templates/registration/regstats.html @@ -22,6 +22,14 @@ <td>Sprint</td> <td>{{ sprint_num }}</td> </tr> +<tr> + <td>Male participants requesting accommodation</td> + <td>{{ male }}</td> +</tr> +<tr> + <td>Female participants requesting accommodation</td> + <td>{{ female }}</td> +</tr> {% for acco in acco_days %} <tr> <td>Accommodation on {{ forloop.counter|add:"11" }}</td> |