{% extends "/base.html" %} {% set active_page = "projects" %} {% set active_link = "stats" %} {% import "projects/_helpers.html" as helper %} {% import "privacy/locked.html" as privacy %} {% block content %} {{ helper.render_project_local_nav(project, active_link, current_user, pro_features, staff_or_admin) }}
{% if enforce_privacy and (current_user.is_anonymous() or (current_user.is_authenticated and not current_user.admin)) %} {{ privacy.render_lock_page() }} {% else %} {{ helper.render_project_title(project, subtitle="Statistics") }}
{% if private %}
Important: Data has been anonymized!
{% endif %} {% if pro_features['better_stats_enabled'] %}

Average contribution time per task:

{{ avg_contrib_time }} seconds

{% endif %}

Distribution of Answers per Hour

Completed Tasks in the last 15 days select an area to zoom, click to reset the chart

Answers per day select an area to zoom, click to reset the chart

Distribution of Answers

{% for k in userStats.keys() if k != 'geo' %} {% endfor %}
Type Users Percentage
{{k | capitalize}} {{userStats[k].taskruns}} {{userStats[k].pct_taskruns}} %

Details about Anonymous Users

{{userStats.anonymous.users}} anonymous users have participated

{% if userStats.anonymous.top5 and userStats.geo %}

Top 5 users

{% for u in userStats.anonymous.top5 %} {% endfor %}
# Country City Tasks
{{loop.index}} {{u.loc.country_name}} {{u.loc.city}} {{u.tasks}}
{% endif %}
{% if userStats.geo %}

This page includes GeoLite data created by MaxMind, available from http://www.maxmind.com

{% endif %}

Details about Authenticated Users

{{userStats.authenticated.users}} authenticated users have participated.

{% if userStats.authenticated.top5 %}

Top 5 users

{% for u in userStats.authenticated.top5 %} {% endfor %}
# User Tasks
{{loop.index}} {{u.fullname}} {{u.tasks}}
{% endif %}
{% endif %}
{{ helper.broken_image() }} {% endblock %}