diff options
author | Madhusudan.C.S | 2010-12-09 19:49:27 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-12-09 19:49:27 +0530 |
commit | 177b37f4650ba69d7d1bac07e78eb51bff786b37 (patch) | |
tree | 8dd2f15cb6bb57795c47ba098b1b26d875e5308c /project/templates/registration/regstats.html | |
parent | 6d413de6e5f8e00565cc4e8b2cb1c3be0025dab5 (diff) | |
download | scipycon-177b37f4650ba69d7d1bac07e78eb51bff786b37.tar.gz scipycon-177b37f4650ba69d7d1bac07e78eb51bff786b37.tar.bz2 scipycon-177b37f4650ba69d7d1bac07e78eb51bff786b37.zip |
Male and Female participants stats on website.
Diffstat (limited to 'project/templates/registration/regstats.html')
-rw-r--r-- | project/templates/registration/regstats.html | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html index 681e00d..6baf8ec 100644 --- a/project/templates/registration/regstats.html +++ b/project/templates/registration/regstats.html @@ -36,6 +36,18 @@ <td>{{ acco }}</td> </tr> {% endfor %} + {% for acco_m in acco_male %} + <tr> + <td>Accommodation on {{ forloop.counter|add:"11" }}(Male)</td> + <td>{{ acco_m }}</td> + </tr> + {% endfor %} + {% for acco_f in acco_days %} + <tr> + <td>Accommodation on {{ forloop.counter|add:"11" }}(Female)</td> + <td>{{ acco_f }}</td> + </tr> + {% endfor %} </table> <br/><br/><br/> |