File size: 984 Bytes
2f4677c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 |
<!-- templates/leaderboard.html -->
{% extends "base.html" %}
{% block title %}Leaderboard{% endblock %}
{% block content %}
<section class="leaderboard-section">
<h2>Leaderboard</h2>
<table>
<thead>
<tr>
<th>Rank</th>
<th>Name</th>
<th>Matches</th>
<th>DRS Dismissals</th>
<th>Score</th>
</tr>
</thead>
<tbody>
{% for player in leaderboard %}
<tr>
<td>{{ loop.index }}</td>
<td>{{ player.name }}</td>
<td>{{ player.matches }}</td>
<td>{{ player.drs_dismissals }}</td>
<td>{{ player.score }}</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="/" class="btn">Back to Home</a>
</section>
{% endblock %} |