{% extends "base.html" %} {% block page_title %}{{ gymnast.first_name }} {{ gymnast.last_name }}{% endblock %} {% block content %}

{{ gymnast.age }} years ({{ gymnast.birthdate | date:"d F Y" }}){{ gymnast.get_orientation_display }}
{{ gymnast.club.name }} - {{ gymnast.club.place.city }}
{{ gymnast.trainings_by_week }} training/week - {{ gymnast.hours_by_week }} hours/week

{% if best_routine or best_straightjump %}
Bests Scores
    {% if best_straightjump %}
  • Straight : {{ best_straightjump.0.date | date:"d-m-Y" }} - {{ best_straightjump.0.tof }}
  • {% endif %} {% if best_routine %}
  • Routine : {{ best_routine.0.date | date:"d-m-Y" }} - {{ best_routine.0.tof }}
  • {% endif %}
{% endif %} {{ known_skill }} known skill on {{ nb_skill }} skills.
{% if learnedskills_list %} {% for learnedskill in learnedskills_list %} {% endfor %}
Date Skill Type
{{ learnedskill.date | date:"d-m-Y" }} {{ learnedskill.skill.short_label }} {{ learnedskill.get_cando_display }}
{% else %}
No information found
{% endif %}
{% if chronos_list %} {% for chrono in chronos_list %} {% endfor %}
Date Type Tof
{{ chrono.date | date:"d-m-Y" }} {{ chrono.get_type_display }} {{ chrono.tof }}
{% else %}
No information found
{% endif %}
{% if chronos_list %}
{% endif %} {% endblock %} {% block footerscript %} {% endblock %}