{% extends 'base.html' %} {% block content %}

{% block title %}Top Posters{% endblock %}

{% if posters %} {% for poster, data in posters.items() | sort(attribute='1.amount', reverse=True) %} {% endfor %}
Submitter Posts Amount
{{ poster }} {% for post in data["posts"] %}{{ post }}{{ "," if not loop.last }}{% endfor %} {{ data["amount"] }} WOW
{% else %}

No posts yet!

{% endif %}
{% endblock %}