{% 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 %}

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

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