Private
Public Access
1
0

small improvements

This commit is contained in:
Sander Roosendaal
2022-06-25 14:16:17 +02:00
parent 13925f6e7f
commit 0b88f3c861
5 changed files with 50 additions and 4 deletions

View File

@@ -0,0 +1,19 @@
<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>