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

{{ jumper.age }} years ({{ jumper.birthdate | date:"d F Y" }}){{ jumper.get_orientation_display }}
{{ jumper.club.name }} - {{ jumper.club.city }}

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