minor changes and improvements to html

This commit is contained in:
2021-03-25 13:14:49 +01:00
parent c1772a7c57
commit fda05d9219
4 changed files with 18 additions and 12 deletions

View File

@@ -9,9 +9,9 @@
<body class="bg-special">
{% include 'navbar_leaderboard.html' %}
<div class="container mt-3 mb-3" role="main">
<div class="container mt-3 mb-3" role="main">
<table id="tableMain" class="table table-striped table-bordered table-sm"
cellspacing="0" width="100%">
cellspacing="0">
<thead>
<tr>
<th class="th-sm font-weight-bold">Rank</th>
@@ -30,12 +30,13 @@
<td>{{ p.games }}</td>
<td>{{ p.rating }}</td>
<td>{{ p.winratio }}%</td>
</tr>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
{{ endOfBoardIndicator }}
{{ endOfBoardIndicator }}
</div>
{% if not doNotComputeRank %}
<script defer>
$(document).ready(function () {
@@ -44,6 +45,7 @@
});
</script>
{% endif %}
{% include 'footer.html' %}
</body>
{% include 'footer.html' %}
</html>