mirror of
https://github.com/FAUSheppy/tmnf-replay-server.git
synced 2025-12-05 22:51:37 +01:00
16 lines
384 B
HTML
16 lines
384 B
HTML
<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>
|