{% 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 BMI
{{ heightweight.date | date:"d-m-Y" }} {{ heightweight.gymnast }} {{ heightweight.height }} {% if heightweight.hips_height == None %}-{% else %}{{ heightweight.hips_height }}{% endif %} {{ heightweight.weight }} {{ heightweight.bmi | floatformat:2 }}
{% else %}

There are no scores corresponding to your criterias

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