{% extends "base.html" %} {% block title %}Search results{% endblock %} {% block content %}
{% if jumper_list or skill_list %} {% if jumper_list %}

Jumper's results

{% for jumper in jumper_list %} {% endfor %}
Lastname Firstname Gender Age Club
{{ jumper.last_name }} {{ jumper.first_name }} {{ jumper.get_gender_display }} {{ jumper.age }} {{ jumper.club.acronym }} ({{ jumper.club.city }})
{% endif %} {% if skill_list %}

Skill's results

{% for skill in skill_list %} {% endfor %}
Short Label Notation Diff. Level Rank
 {{ skill.short_label }} {{ skill.numeric_notation }} {{ skill.difficulty }} {{ skill.level }} {{ skill.rank }}
{% endif %} {% else %}

Search results

There are no items corresponding to your criterias

{% endif %} {% endblock %}