{% extends "base.html" %} {% set active_page = "community" %} {% import "privacy/locked.html" as privacy %} {% import "account/_helpers.html" as helper %} {% from "projects/_helpers.html" import broken_image %} {% 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 %} {{ _('Leaderboard') }}

{{ _('Community') }} {{total}} {{ _('registered users') }}

{% if accounts %}
{% for account in accounts %} {% endfor %}
{% endif %} {% if pagination.pages > 1 %} {{ helper.render_pagination(pagination) }} {% endif %} {% endif %} {{ broken_image() }}
{% endblock %}