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

Mind State list {% if gymnast %}for {{ gymnast }}{% endif %}

{% if request.user|has_group:"trainer" %} {% endif %}
{% if mindstate_list %} {% for state in mindstate_list %} {% endfor %}
Date Gymnast Score
{{ state.date | date:"d-m-Y" }} {{ state.gymnast }} {{ state.score }}
{% else %}

There are no mindstates corresponding to your criterias

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