Private
Public Access
1
0
Files
rowsandall/boatmovers/templates/crew.html
Sander Roosendaal 0b88f3c861 small improvements
2022-06-25 14:16:17 +02:00

20 lines
364 B
HTML

<h1>
{{ crew.name }}
</h1>
<p>
<table>
<tr>
<th>Athlete</th>
<th>&nbsp;</th>
<th>Score</th>
</tr>
{% for athlete in athletes %}
<tr>
<td>{{ athlete.first_name }}</td>
<td>{{ athlete.last_name }}</td>
<td>{{ athlete.trueskill_exposed|floatformat:2 }}</td>
</tr>
{% endfor %}
</table>
</p>