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

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

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

There are no chronos corresponding to your criterias.

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