{% extends "listing.html" %} {% load has_group %} {% block datacontent %}

Gymnast Listing

{% if request.user|has_group:"trainer" %} {% endif %}
{% if season_information_list %} {% if request.user|has_group:"trainer" %} {% endif %} {% for season_information in season_information_list %} {% if request.user|has_group:"trainer" %} {% endif %} {% endfor %}
Lastname Firstname Gender Age Category Club
{{ season_information.gymnast.last_name }} {{ season_information.gymnast.first_name }} {{ season_information.gymnast.get_gender_display }} {{ season_information.gymnast.age }} {{ season_information.get_category_display }} {{ season_information.club.name }}
{% else %} There are no gymnast corresponding to your criterias. {% endif %}
{% endblock %} {% block footerscript %} {% endblock %}