{% extends "base.html" %} {% load gravatar %} {% load static %} {% block title %} Leaderboard Each Month {% endblock title %} {% block description %} Discover the top performers on the leaderboard for each month. View scores, usernames, and their achievements month by month. {% endblock description %} {% block keywords %} Leaderboard Each Month, Monthly Leaderboard, Top Performers, Scores, Usernames, Monthly Achievements {% endblock keywords %} {% block og_title %} Leaderboard Each Month - Monthly Top Performers and Achievements {% endblock og_title %} {% block content %} {% include "includes/sidenav.html" %}

Monthly Achievements

Track top performers across different months

{% if not leaderboard %}

No Data Available

There are no records for any month yet.

{% else %}
{% for month in leaderboard %}

{{ month.month }} {% if month.user %}#1 Winner{% endif %}

{% if not month.user %}

No bugs found this month

{% else %}
{% if month.user.userprofile.avatar %} {{ month.user.username }} {% elif user.socialaccount_set.all.0.get_avatar_url %} {{ month.user.username }} {% else %} {{ month.user.username }} {% endif %}
{{ month.user.username }} {{ month.user.userprofile.get_title_display }}
{{ month.user.total_score }} Points
{% if month.user.amount %}
${{ month.user.amount|floatformat:2 }}
Earned
{% endif %} {% if month.user.userprofile.winnings %}
${{ month.user.userprofile.winnings|floatformat:2 }}
Total Winnings
{% endif %}
{% endif %}
{% endfor %}
{% endif %}
{% endblock content %}