{% extends "base.html" %} {% block page_title %}.: Club's statistics :.{% endblock %} {% block title %}Club{% endblock %} {% block content %}
{% if courses %}

Courses

{% for course in courses %} {% endfor %}
Day Hour # Trainers # Gymnasts Duration # Courses # Hours # Hours paid
{{ course.0.get_iso_day_number_display }} {{ course.0.hour_begin }} - {{ course.0.hour_end }} {{ course.1 }} {{ course.2 }} {{ course.3 }} {{ course.4 }} {{ course.5 }} {{ course.6 }}
{{ totalHoursByWeek }} {{ totalCourses }} {{ totalHours }} {{ totalHoursPaid }}

Jumpers

{% for gymnast in gymnasts.items %} {% endfor %}
Gymnast Courses H./w. Training Presences Absences H. Training H. Presences H. Absences
{{ gymnast.1.gymnast }} {{ gymnast.1.nbcoursebyweek }} {{ gymnast.1.nbhourbyweek }} {{ gymnast.1.nbtraining }} {{ gymnast.1.nbattendance }} {{ gymnast.1.nbabsence }} {{ gymnast.1.nbhourtraining }} {{ gymnast.1.percentageattendance }}% ({{ gymnast.1.nbhourattendance }}) {{ gymnast.1.percentageabsence }}% ({{ gymnast.1.nbhourabsence }})
{% endif %}
{% endblock %} {% block footerscript %} {% endblock %}