put the leaderboard at the very end of the page

This commit is contained in:
Tomáš Mládek 2021-02-13 18:15:55 +01:00
parent 179752f35e
commit 39304d2392

View file

@ -92,12 +92,6 @@
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
<h2>Leaderboard</h2>
<ol>
{% for entry in leaderboard %}
<li>{{entry.name}} ({{entry.total}})</li>
{% endfor %}
</ol>
<h2>Log</h2> <h2>Log</h2>
<table class="log"> <table class="log">
@ -117,5 +111,12 @@
</tr> </tr>
{% endfor %} {% endfor %}
</table> </table>
<h2>Leaderboard</h2>
<ol>
{% for entry in leaderboard %}
<li>{{entry.name}} ({{entry.total}})</li>
{% endfor %}
</ol>
</body> </body>
</html> </html>