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

{{brand}}: {{ _('General Statistics') }}


Users

{{ _('Anonymous users') }}: {{stats.n_anon}}

{{ _('Authenticated users') }}: {{stats.n_auth}}

{{ _('Total') }}: {{stats.n_total_users}}

{{ _('Leaderboard') }} {% if top5_users_24_hours %}

{{ _('Top 5 Users in the last 24 hours') }}

    {% for user in top5_users_24_hours %}
  1. {{user.fullname}} {{ _('with') }} {{user.n_answers}} {{ _('contributed answers') }}
  2. {% endfor %}
{% else %}

{{ _('No active users in the last 24 hours') }}

{% endif %}

{{ _('Projects') }}

{{ _('Published Projects') }}: {{stats.n_published_projects}}

{{ _('Draft Projects') }}: {{stats.n_draft_projects}}

{{ _('Total') }}: {{stats.n_total_projects}}

{% if top5_projects_24_hours %}

{{ _('Top 5 projects in the last 24 hours') }}

    {% for project in top5_projects_24_hours %}
  1. {{project.name}}
  2. {% endfor %}
{% else %}

{{ _('No active projects in the last 24 hours') }}

{% endif %}

{{ _('Tasks and Answers') }}

{{ _('Number of Tasks') }}: {{stats.n_tasks}}

{{ _('Number of Task Runs') }}: {{stats.n_task_runs}}

{% if show_locs %}

{{ _('Anonymous Volunteers') }}

{{_('This page includes GeoLite data created by MaxMind, available from')}} http://www.maxmind.com

{% endif %} {% endif %}
{% endblock %}