{% extends "base.html" %} {% load gravatar %} {% load static %} {% block title %} Monthly Leaderboard {% endblock title %} {% block description %} Check out the top performers on the monthly leaderboard. View scores, usernames, and their achievements for the month. {% endblock description %} {% block keywords %} Monthly Leaderboard, Top Performers, Scores, Usernames, Achievements, Leaderboard Rankings {% endblock keywords %} {% block og_title %} Monthly Leaderboard - Top Performers and Achievements {% endblock og_title %} {% block og_description %} Explore the monthly leaderboard to see the top performers. View scores, usernames, and their achievements for the month. {% endblock og_description %} {% block before_js %} {% endblock before_js %} {% block content %} {% include "includes/sidenav.html" %}

Monthly Leaderboard

Track the top performers for any specific month

Click to select a specific month and year
{% if not leaderboard %}

No Data Available

There are no records for the selected month.

{% else %}
{% for leader in leaderboard %}
{% if forloop.counter == 1 %}
{% elif forloop.counter == 2 %}
{% elif forloop.counter == 3 %}
{% else %} #{{ forloop.counter }} {% endif %}
{% if leader.userprofile.avatar %} {{ leader.username }} {% elif leader.socialaccount_set.all.0.get_avatar_url %} {{ leader.username }} {% else %} {{ leader.username }} {% endif %}
{{ leader.username }} {{ leader.userprofile.get_title_display }}
{{ leader.total_score }} Points {% if leader.amount %} {{ leader.amount|floatformat:2 }} {% endif %}
{% endfor %}
{% endif %}
{% endblock content %}