{% extends "settings2.html" %}
{% block pagetitle %}Leaderboard{% endblock %}
{% block content %}
Top 25 dramatards by dramacoins
# |
Name |
Coins |
{% for user in users1 %}
{{users1.index(user)+1}} |
{{user.username}} |
{{user.dramacoins}} |
{% endfor %}
Top 10 dramatards by followers
# |
Name |
Followers |
{% for user in users2 %}
{{users2.index(user)+1}} |
{{user.username}} |
{{user.stored_subscriber_count}} |
{% endfor %}
Top 10 dramatards by post count
# |
Name |
Post count |
{% for user in users3 %}
{{users3.index(user)+1}} |
{{user.username}} |
{{user.post_count}} |
{% endfor %}
Top 10 dramatards by comment count
# |
Name |
Comment count |
{% for user in users4 %}
{{users4.index(user)+1}} |
{{user.username}} |
{{user.comment_count}} |
{% endfor %}
{% endblock %}