{% 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 }} {% if wellbeing.mindstate < 5%}{% endif %} {{ wellbeing.mindstate }} {% if wellbeing.mindstate < 5%}{% endif %} {% if wellbeing.sleep < 5%}{% endif %} {{ wellbeing.sleep }} {% if wellbeing.sleep < 5%}{% endif %} {% if wellbeing.stress > 5%}{% endif %} {{ wellbeing.stress }} {% if wellbeing.stress > 5%}{% endif %} {% if wellbeing.fatigue > 5%}{% endif %} {{ wellbeing.fatigue }} {% if wellbeing.fatigue > 5%}{% endif %} {% if wellbeing.muscle_soreness > 5%}{% endif %} {{ wellbeing.muscle_soreness }} {% if wellbeing.muscle_soreness > 5%}{% endif %}
{% else %}

There are no well being corresponding to your criterias

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