Private
Public Access
1
0
Files
rowsandall/boatmovers/templates/boatmovers.html
Sander Roosendaal 13925f6e7f it is working
2022-06-24 17:31:45 +02:00

76 lines
1.7 KiB
HTML

<h1>
Boat Movers Ranking
</h1>
<p>
<table>
<tr>
<th>Rank</th>
<th>Score</th>
<th>Name</th><td></td>
<th>Club</th>
<th>Gender</th>
</tr>
{% for athlete in athletes %}
<tr>
<td>{{ forloop.counter }}</td>
<td>{{ athlete.trueskill_exposed|floatformat:2 }}</td>
<td>{{ athlete.first_name }}</td>
<td>{{ athlete.last_name }}</td>
<td>{{ athlete.club }}</td>
<td>{{ athlete.gender }}</td>
</tr>
{% endfor %}
</table>
</p>
<p>
This page is an experimental ranking based on public race results, mainly from Dutch Masters
rowing events. If your name shows up and you do not agree with that, contact us at info@rowsandall.com
and we'll remove your name.
</p>
<p>
This ranking was based on results from following races:
</p>
<p>
<table>
{% for race in races %}
<tr>
<td>{{ race.date }}</td><td>{{ race.name }}</td>
<td>
<a href="race/{{ race.id }}">View Race</a>
</td>
</tr>
{% endfor %}
</table>
</p>
{% if user.is_authenticated and user.is_staff %}
<p>
Unprocessed races
</p>
<p>
<table>
{% for race in new_races %}
<tr>
<td>{{ race.date }}</td><td>{{ race.name }}</td>
<td>
<a href="race/{{ race.id }}">Manage Race</a>
</td>
</tr>
{% endfor %}
</table>
</p>
<p>
<a href="athlete/add/">Add Athlete</a>
</p>
<p>
<a href="crew/add/">Add Crew</a>
</p>
{% endif %}
<p>
<a href="race/add/">Add Race</a>
</p>
{% if user.is_authenticated and user.is_staff %}
<p>
<a href="result/add/">Add Result</a>
</p>
{% endif %}