diff options
Diffstat (limited to 'project/templates/registration/regstats.html')
-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 %} |