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

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

{% if jumper.address %} {{ jumper.address }} - {{ jumper.postal }} {{ jumper.city }}
{% endif %}
{% if learnedskills_list %} {% for skill in learnedskills_list %} {% endfor %}
Date Skill
{{ skill.date | date:"d F Y" }} {{ skill.skill }}
{% else %}
No information found
{% endif %}
{% if chronos_list %} {% for chrono in chronos_list %} {% endfor %}
Date Type Tof
{{ chrono.date | date:"d F Y" }} {{ chrono.get_type_display }} {{ chrono.tof }}
{% else %}
There are no places corresponding to your criterias
{% endif %}
{% endblock %}