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

Height/Weight list

{% if heightweight_list.count >= 1 %} {% for heightweight in heightweight_list %} {% endfor %}
Date Gymnast Height Weight
{{ heightweight.date | date:"d-m-Y" }} {{ heightweight.gymnast }} {{ heightweight.height }} {{ heightweight.weight }}
{% else %} There are no scores corresponding to your criterias {% endif %}
{% endblock %} {% block footerscript %} {% endblock %}