{% extends "base.html" %} {% load humanize %} {% load grandchallenge_tags %} {% load static %} {% block title %}Statistics{% endblock %} {% block content %}

Site Statistics


Users

{% allusers_statistics False %}
Total users
{{ number_of_users|intcomma }}
New users (last {{ days }} days)
{{ new_users_period|intcomma }}
Users logged in (last {{ days }} days)
{{ logged_in_period|intcomma }}

Challenges

Public challenges
{{ public_challenges|intcomma }}
Hidden challenges
{{ hidden_challenges|intcomma }}
Public challenge with the most participants
{{ mp_group.participants_of_challenge }} ({{ mp_group.num_users|intcomma }} Participant{{ mp_group.num_users|pluralize }})
Latest public challenge
{{ latest_public_challenge }}

Registrations to public challenges in the past {{ days }} days (top {{ max_num_results }})

Evaluations

Challenges using automated evaluation
{{ using_auto_eval|intcomma }}
Total submissions
{{ submissions|intcomma }}
Total submissions (last {{ days }} days)
{{ submissions_period|intcomma }}
Public challenge with the most submissions
{{ mp_challenge_submissions }} ({{ mp_challenge_submissions.num_submissions|intcomma }} Submission{{ mp_challenge_submissions.num_submissions|pluralize }})
Latest public result
Result for {{ latest_result.job.submission.challenge }}, created {{ latest_result.created|naturaltime }}, {{ latest_result.rank|ordinal }} position on leaderboard.

Submissions to public challenges in the past {{ days }} days (top {{ max_num_results }})

{% endblock %} {% block script %} {{ block.super }} {% endblock %}