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

Chronos' Listing

{% if chrono_list.count >= 1 %} {% for chrono in chrono_list %} {% endfor %}
Date Gymnast Score Routine Type
{{ chrono.date | date:"d-m-Y" }} {{ chrono.gymnast }} {{ chrono.score }} {{ chrono.routine }} {{ chrono.get_routine_type_display }}
{% else %} There are no chronos corresponding to your criterias {% endif %}
{% endblock %} {% block footerscript %} {% endblock %}