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

Injuries Listing

{% if injuries_list %} {% for injury in injuries_list %} {% endfor %}
Date Gymnast Mechanism Location Side Skill # Week off
{{ injury.date | date:"d-m-Y" }} {{ injury.gymnast }} {{ injury.get_mechanism_display }} {{ injury.location }} {{ injury.get_body_side_display }} {% if injury.skill %} {{ injury.skill }} {% else %} - {% endif %} {% if injury.nb_week_off %} {{ injury.nb_week_off }} {% else %} - {% endif %}
{% else %}

There are no injury corresponding to your criterias.

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