Private
Public Access
1
0

listtable

This commit is contained in:
Sander Roosendaal
2022-07-03 16:59:07 +02:00
parent c0f409203c
commit 331a3e2790

View File

@@ -25,7 +25,8 @@
<div class="row">
<div class="column">
<p>
<table>
<table width="100%" class="listtable shortpadded">
<thead>
<tr>
<th>Rank</th>
<th>Score</th>
@@ -33,6 +34,8 @@
<th>Club</th>
<th>Gender</th>
</tr>
</thead>
<tbody>
{% for athlete in athletes %}
<tr>
<td>{{ forloop.counter }}</td>
@@ -47,6 +50,7 @@
{% endif %}
</tr>
{% endfor %}
</tbody>
</table>
</p>
</div>