{% extends "base.html" %} {% load gravatar %} {% block style %} {% endblock style %} {% block content %} {% include "includes/sidenav.html" %}

Monthly Leaderboard

{% if not leaderboard %}

No data for this month

{% else %} {% for month in leaderboard %}
{% 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 %} username {% else %} username {% endif %} {{ month.user.username }} {{ month.user.total_score }} Points {% if month.user.userprofile.winnings %} ${{ month.user.userprofile.winnings|default:""|floatformat }} {% endif %} {{ month.user.userprofile.get_title_display }} {% endif %}
{% endfor %} {% endif %}
{% endblock content %}