diff options
Diffstat (limited to 'project/templates/registration/regstats.html')
-rw-r--r-- | project/templates/registration/regstats.html | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/project/templates/registration/regstats.html b/project/templates/registration/regstats.html index f73a36f..a0b3786 100644 --- a/project/templates/registration/regstats.html +++ b/project/templates/registration/regstats.html @@ -22,5 +22,24 @@ <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 requested on {{ forloop.counter|add:"11" }}th night</td> + <td>{{ acco.total }} (Male: {{ acco.male }} Female: {{ acco.female }})</td> + </tr> + {% endfor %} </table> + +<br/><br/><br/> +<strong>To download CSV Click +<a href="{% url scipycon_regstats_download params.scope %}">here</a></strong> + {% endblock content %} |