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

Well being list {% if gymnast %}for {{ gymnast }}{% endif %}

{% if request.user|has_group:"trainer" %} {% endif %}
{% if wellbeing_list %} {% for wellbeing in wellbeing_list %} {% endfor %}
Date Gymnast Mindstate Sleep Stress Fatigue Muscle soreness
{{ wellbeing.date | date:"d-m-Y" }} {{ wellbeing.gymnast }} {{ wellbeing.mindstate }} {{ wellbeing.sleep }} {{ wellbeing.stress }} {{ wellbeing.fatigue }} {{ wellbeing.muscle_soreness }}
{% else %}

There are no well being corresponding to your criterias

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