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

Gymnast Listing

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