{% 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 for {{ 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 %}

Estimated level : {% if gymnast_nb_known_skills %}{{ evaluated_level }}{% else %}0{% endif %}

{% if gymnast_nb_known_skills %} {% for level in percentages %} {% if level.2 > 0 %}
  Level {{ level.0 }}
{% endif %} {% endfor %} {% else %} No information. {% endif %}
{% endblock %} {% block footerscript %} {% endblock %}