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

Accidents' Listing

{% if accident_list.count >= 1 %} {% for accident in accident_list %} {% endfor %}
Date Gymnast Skill
{{ accident.date | date:"d-m-Y" }} {{ accident.gymnast }} {{ accident.educative.notation }} ({{ accident.educative.shortLabel }})
{% else %}
There no accident corresponding to your criterias…
{% endif %}
{% endblock %} {% block footerscript %} {% endblock %}