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

Notes listing {% if gymnast %}for {{ gymnast }}{% endif %}

{% if note_list %} {% for note in note_list %} {% endfor %}
  Date Gymnast Coach
{{ note.created_at | date:"d-m-Y" }} {{ note.gymnast }} {{ note.coach }}
{% else %}

There are no chronos corresponding to your criterias.

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