mirror of
https://github.com/FAUSheppy/tmnf-replay-server.git
synced 2025-12-06 07:01:37 +01:00
feat: rank counter
This commit is contained in:
15
templates/rank-info.html
Normal file
15
templates/rank-info.html
Normal file
@@ -0,0 +1,15 @@
|
||||
<head>
|
||||
{% include "head.html" %}
|
||||
</head>
|
||||
<body>
|
||||
{% include "upload-button.html" %}
|
||||
{% include "home-button.html" %}
|
||||
{% for rank, values in rank_dict.items() %}
|
||||
<h4>Rank {{ rank }} Count</h4>
|
||||
<div class="w-100 my-5">
|
||||
{% for login, count in values.items() %}
|
||||
<p>{{ count }}{{ login }}</p>
|
||||
{% endfor %}
|
||||
</div>
|
||||
{% endfor %}
|
||||
</body>
|
||||
Reference in New Issue
Block a user