feat: rank counter

This commit is contained in:
2023-06-16 14:31:46 +02:00
parent 1fe5afa8a2
commit 08fb0e7089
2 changed files with 49 additions and 0 deletions

15
templates/rank-info.html Normal file
View 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>