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