{% extends "settings2.html" %}
{% block pagetitle %}Leaderboard{% endblock %}
{% block content %}
# |
Name |
Coins |
{% for user in users1 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.coins)}} |
{% endfor %}
{% if pos1 %}
{{pos1}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.coins)}} |
{% endif %}
# |
Name |
Coins |
{% for user in users7 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.coins_spent)}} |
{% endfor %}
{% if pos7 %}
{{pos7}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.coins_spent)}} |
{% endif %}
# |
Name |
Truescore |
{% for user in users10 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.truecoins)}} |
{% endfor %}
{% if pos10 %}
{{pos10}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.truecoins)}} |
{% endif %}
# |
Name |
Posts |
{% for user in users3 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.post_count)}} |
{% endfor %}
{% if pos3 %}
{{pos3}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.post_count)}} |
{% endif %}
# |
Name |
Comments |
{% for user in users4 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.comment_count)}} |
{% endfor %}
{% if pos4 %}
{{pos4}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.comment_count)}} |
{% endif %}
# |
Name |
Awards |
{% for user in users5 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(user.received_award_count)}} |
{% endfor %}
{% if pos5 %}
{{pos5}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(v.received_award_count)}} |
{% endif %}
# |
Name |
Badges |
{% for user, num in users11 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(num)}} |
{% endfor %}
{% if pos11 and (pos11[0] > 25 or not pos11[1]) %}
{{pos11[0]}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(pos11[1])}} |
{% endif %}
{% if users12 %}
# |
Name |
Marseys |
{% for user, num in users12 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(num)}} |
{% endfor %}
{% if pos12 and (pos12[0] > 25 or not pos12[1]) %}
{{pos12[0]}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(pos12[1])}} |
{% endif %}
{% endif %}
# |
Name |
Blocked By |
{% for user, num in users16 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(num)}} |
{% endfor %}
{% if pos16 and (pos16[0] > 25 or not pos16[1]) %}
{{pos16[0]}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(pos16[1])}} |
{% endif %}
# |
Name |
Owned Hats |
{% for user,num in users17 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(num)}} |
{% endfor %}
{% if pos17 and (pos17[0] > 25 or not pos17[1]) %}
{{pos17[0]}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(pos17[1])}} |
{% endif %}
# |
Name |
Designed Hats |
{% for user,num in users18 %}
{{loop.index}} |
{% include "user_in_table.html" %} |
{{"{:,}".format(num)}} |
{% endfor %}
{% if pos18 and (pos18[0] > 25 or not pos18[1]) %}
{{pos18[0]}} |
{% with user=v %}
{% include "user_in_table.html" %}
{% endwith %}
|
{{"{:,}".format(pos18[1])}} |
{% endif %}
{% endblock %}