Jarvis/jarvis/followup/templates/wellbeing/details.html

37 lines
1.4 KiB
HTML
Raw Normal View History

2023-07-05 10:51:49 +02:00
{% extends "base.html" %}
{% block content %}
<div class="row justify-content-center">
<div class="col-12 col-sm-8 col-md-6">
<div class="card">
<div class="card-header">
<h4 class="card-title mb-0">Well being {{ wellbeing.date | date:"d N Y" }}</h4>
</div>
<div class="card-body">
<a href="{% url 'gymnast_details_tab' wellbeing.gymnast.id 'physiological' %}">{{ wellbeing.gymnast }}</a><br />
Mindstate : {{ wellbeing.mindstate }}<br />
Sleep : {{ wellbeing.sleep }}<br />
Stress : {{ wellbeing.stress }}<br />
Fatigue : {{ wellbeing.fatigue }}<br />
Muscle soreness : {{ wellbeing.muscle_soreness }}<br />
<br />
{% if wellbeing.to_markdown %}
{{ wellbeing.to_markdown | safe }}
{% else %}
<p class="text-muted">No additionnal details.</p>
{% endif %}
<div class="card-footer pl-0 pb-0">
<a href="{% url 'wellbeing_list' %}">
<button type="submit" value="add" class="btn btn-icon btn-warning ">
<i class="tim-icons icon-double-left"></i>
</button>
</a>
</div>
</div>
</div>
</div>
</div>
{% endblock %}