diff options
author | Madhusudan.C.S | 2010-12-09 19:08:12 +0530 |
---|---|---|
committer | Madhusudan.C.S | 2010-12-09 19:08:12 +0530 |
commit | 4116f4fbd97f29da90482f2a008fad227bbdb6e8 (patch) | |
tree | 4970125262ed0037b8b3a752d5a76fa0ead4a40c /project/templates/registration | |
parent | f2fb89848d262ceec98ef2fa9b66ff06c4848d28 (diff) | |
download | scipycon-4116f4fbd97f29da90482f2a008fad227bbdb6e8.tar.gz scipycon-4116f4fbd97f29da90482f2a008fad227bbdb6e8.tar.bz2 scipycon-4116f4fbd97f29da90482f2a008fad227bbdb6e8.zip |
Make downloadable CSV for stats page.
--HG--
extra : rebase_source : 8f9d21245ede2f73a693ba91bc72b5f698927b07
Diffstat (limited to 'project/templates/registration')
-rw-r--r-- | project/templates/registration/regstats.html | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html index f73a36f..2b9ea95 100644 --- a/project/templates/registration/regstats.html +++ b/project/templates/registration/regstats.html @@ -22,5 +22,16 @@ <td>Sprint</td> <td>{{ sprint_num }}</td> </tr> +{% for acco in acco_days %} + <tr> + <td>Accommodation on {{ forloop.counter|add:"11" }}</td> + <td>{{ acco }}</td> + </tr> + {% endfor %} </table> + + +To download PDF +<a href="{% url scipycon_regstats_download params.scope %}">here</a> + {% endblock content %} |