{% extends "base.html" %} {% load skill_doughnut %} {% load level_chart_bar %} {% 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 }}
{% if height_weight %} {{ height_weight.0.height }}cm - {{ height_weight.0.weight }}kg ({{ height_weight.0.date | date:"d-m-Y" }})
{% endif %} {{ gymnast.trainings_by_week }} training/week for {{ gymnast.hours_by_week }} hours/week

  • Straight jump : {{ best_straightjump.0.tof }} ({{ best_straightjump.0.date | date:"d-m-Y" }})
  • Routine : {% if best_routine %}{{ best_routine.0.tof }} ({{ best_routine.0.date | date:"d-m-Y" }}){% else %} (no information){% endif %}
  • {% if gymnast_nb_known_skills %} {% generate_skill_doughnut gymnast.id %} {% else %}

    No learned skill statistics.

    {% endif %}
    {% if gymnast_nb_known_skills %} {% generate_level_chart_bar gymnast.id %} {% else %}

    No level/rank information.

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