suchwow/suchwow/templates/leaderboard.html

34 lines
780 B
HTML
Raw Normal View History

2020-09-16 19:32:16 +01:00
{% extends 'base.html' %}
{% block content %}
2021-05-05 10:00:36 +01:00
<div class="container content" style="text-align:center;">
2020-09-16 19:32:16 +01:00
2021-05-05 10:00:36 +01:00
<h1>Top Posters</h1>
2020-09-16 19:32:16 +01:00
{% if posters %}
<table class="table table-striped">
<tr>
<th>Submitter</th>
<th>Post Count</th>
<th>Amount</th>
</tr>
2020-09-16 19:32:16 +01:00
{% for poster, data in posters.items() | sort(attribute='1.amount', reverse=True) %}
<tr>
2021-05-06 18:46:15 +01:00
<td><a href="/?submitter={{ poster }}">{{ poster }}</a></td>
<td>{{ data["posts"] | length }}</td>
<td>{{ data["amount"] }} WOW</td>
</tr>
2020-09-16 19:32:16 +01:00
{% endfor %}
</table>
2020-09-16 19:32:16 +01:00
{% else %}
<p>No posts yet!</p>
2020-09-16 19:32:16 +01:00
{% endif %}
<hr>
<a href="{{ url_for('index') }}"><button class="btn btn-warning">Go Home</button></a>
2020-09-16 19:32:16 +01:00
</div>
{% endblock %}