{% extends "/base.html" %} {% set active_page = "leaderboard" %} {% set active_project = "all" %} {% import "privacy/locked.html" as privacy %} {% block content %}
{% if enforce_privacy and (current_user.is_anonymous() or (current_user.is_authenticated and not current_user.admin)) %} {{ privacy.render_lock_page() }} {% else %}

Community Leaderboard

{% for user in top_users %} {% if user.score|int > 0 and user.rank|int > 0 %} {% if user.fullname == current_user.fullname %} {% else %} {%endif%} {%endif%} {% endfor %}
Rank Name Contributions
{{user.rank}} {{user.name}} {{user.score}}
{{user.rank}} {{user.name}} {{user.score}}
{% endif %}
{% endblock %}