Update height/weight listing

This commit is contained in:
Gregory Trullemans 2023-11-21 10:23:06 +01:00
parent df3af2b8a8
commit c124a7d1a6
1 changed files with 1 additions and 1 deletions

View File

@ -46,7 +46,7 @@
<td class="text-left">{{ heightweight.date | date:"d-m-Y" }}</td>
<td class="text-left"><a href="{% url 'gymnast_details' heightweight.gymnast.id %}">{{ heightweight.gymnast }}</a></td>
<td>{{ heightweight.height }}</td>
<td>{{ heightweight.hips_height | default_if_none:"-" }}</td>
<td>{% if heightweight.hips_height == None %}-{% else %}{{ heightweight.hips_height }}{% endif %}</td>
<td>{{ heightweight.weight }}</td>
<td>{{ heightweight.bmi | floatformat:2 }}</td>
</tr>