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

{% if gymnast %} {{ gymnast }}'s {% endif %} Training List

{% if gymnasttrainings %} {% for training in gymnasttrainings %} {% endfor %}
Date gymnast label difficulty # skill score
{{ training.date | date:"j-n-Y" }} {{ training.gymnast }} {{ training.label }} {{ training.difficulty }} {{ training.number_of_skill }} {{ training.score }}
{% else %}

There are no training corresponding to your criterias.

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