mirror of
https://github.com/simon987/Much-Assembly-Required.git
synced 2025-04-10 14:26:45 +00:00
38 lines
942 B
Plaintext
38 lines
942 B
Plaintext
<!doctype html>
|
|
<html lang="en">
|
|
#set ($title = "Leaderboard - M.A.R")
|
|
#set ($cur_page = "leaderboard")
|
|
#parse("head.vm")
|
|
<body>
|
|
|
|
#parse("header.vm")
|
|
|
|
<div class="container">
|
|
<div class="card">
|
|
<div class="card-header"><h5>Leaderboard</h5></div>
|
|
<div class="card-body">
|
|
<table class="table table-hover table-striped">
|
|
<thead class="thead-dark">
|
|
<tr>
|
|
<th>Player</th>
|
|
<th>Completed vaults</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
#foreach($row in $stats)
|
|
<tr>
|
|
<td>$row.getKey().getUsername()</td>
|
|
<td>$row.getValue().size()</td>
|
|
</tr>
|
|
#end
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
#parse("footer.vm")
|
|
|
|
</body>
|
|
|
|
</html> |