{% extends "/base.html" %} {% set active_page = "statistics" %} {% 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}}: Global 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 %}