{% extends "base.html" %} {% load gravatar %} {% block style %} {% endblock %} {% block content %}

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 %} {% elif user.socialaccount_set.all.0.get_avatar_url %} {% else %} {% 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 %}