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

Height/Weight list {% if gymnast %}for {{ gymnast }}{% endif %}

{% if request.user|has_group:"trainer" %} {% endif %}
{% if heightweight_list %} {% for heightweight in heightweight_list %} {% endfor %}
Date Gymnast Height Hips height Weight
{{ heightweight.date | date:"d-m-Y" }} {{ heightweight.gymnast }} {{ heightweight.height }} {{ heightweight.hips_height }} {{ heightweight.weight }}
{% else %}

There are no scores corresponding to your criterias

{% endif %}
{% endblock %} {% block footerscript %} {% endblock %}