{% load static %}

Height/Weight

{% if height_weight_list %}
{% else %}

No height/weight recorded for this gymnast.

{% endif %}

Well Being

{% if wellbeing_list %}
{% else %}

No well being recorded for this gymnast.

{% endif %}

Injuries

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

No injury known for this gymnast.

{% endif %}