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

{% if gymnast %} {{ gymnast }}'s {% endif %} chronos listing

{% if gymnast %}
{% for chrono in chrono_list %} {% endfor %}
  Date Routine Type Score TOF
  {% if chrono.details.all %} {% endif %} {{ chrono.date | date:"j-n-Y" }} {% if chrono.details.all %} {% endif %} {% if chrono.routine %} {{ chrono.routine.long_label }} {% else %} {{ chrono.get_chrono_type_display }} {% endif %} {{ chrono.get_score_type_display }} {{ chrono.score }} {{ chrono.tof }}
Your browser doesn't support canvas
{% else %} {% if chrono_list %}
{% for chrono in chrono_list %} {% endfor %}
  Date Gymnast Routine Type Score TOF
  {% if chrono.details.all %}{% endif %}{{ chrono.date | date:"j-n-Y" }}{% if chrono.details.all %}{% endif %} {% if chrono.gymnast.id in request.session.available_gymnast or request.user.is_superuser %}{% endif %} {{ chrono.gymnast }} {% if chrono.routine %} {{ chrono.routine.long_label }} {% else %} {{ chrono.get_chrono_type_display }} {% endif %} {{ chrono.get_score_type_display }} {{ chrono.score }} {{ chrono.tof }}
{% else %}

There are no chronos corresponding to your criterias.

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