{% extends "listing.html" %} {% load has_group %} {% block datacontent %}

Routine done list {% if gymnast %}for {{ gymnast }}{% endif %}

{% if request.user|has_group:"trainer" %} {% endif %}
{% if routine_done_list %} {% for routine_done in routine_done_list %} {% endfor %}
Date Type Routine # Try # Success
{{ routine_done.date | date:"d-m-Y"}} {{ routine_done.get_routine_type_display }} {% if routine_done.routine %} {{ routine_done.routine.long_label }} {% else %} - {% endif %} {{ routine_done.number_of_try }} {{ routine_done.number_of_successes }}
{% else %}

There are no routine's statistics associated to this gymnast.

{% endif %}
{% endblock %} {% block footerscript %} {% endblock %}