backend / templates /leaderboard.html
dschandra's picture
Create leaderboard.html
2f4677c verified
raw
history blame contribute delete
984 Bytes
<!-- 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 %}