16 lines
321 B
HTML
16 lines
321 B
HTML
|
<table class="table is-fullwidth is-striped is-bordered">
|
||
|
<thead>
|
||
|
<tr>
|
||
|
<th>Player</th>
|
||
|
<th>Time</th>
|
||
|
</tr>
|
||
|
</thead>
|
||
|
<tbody>
|
||
|
{% for result in results %}
|
||
|
<tr>
|
||
|
<td>{{ result.player }}</td>
|
||
|
<td>{{ result.time_display }}</td>
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</tbody>
|
||
|
</table>
|