small improvements
This commit is contained in:
19
boatmovers/templates/crew.html
Normal file
19
boatmovers/templates/crew.html
Normal file
@@ -0,0 +1,19 @@
|
||||
<h1>
|
||||
{{ crew.name }}
|
||||
</h1>
|
||||
<p>
|
||||
<table>
|
||||
<tr>
|
||||
<th>Athlete</th>
|
||||
<th> </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>
|
||||
Reference in New Issue
Block a user