{% extends "course/course-base.html" %} {% load i18n %} {% block title %} {% trans "Analytics" %} - {{ relate_site_name }} {% endblock %} {% block content %}

{% blocktrans %} Analytics: {{ flow_identifier}} {% endblocktrans %}

{% trans "Grade Distribution" %}

{% if restrict_to_first_attempt %} {% comment %} Translators: the following are the options when showing attempts of particiants in grade analytics. {% endcomment %} {% blocktrans trimmed %} Showing results for only the first attempt by each participant. {% endblocktrans %} {% trans "Show all attempts" %} {% else %} {% trans "Showing results for all attempts by each participant." %} {% trans "Show only the first attempt" %} {% endif %}

{% blocktrans trimmed with weight=grade_histogram.total_weight count counter=grade_histogram.total_weight %} {{ weight }} grade {% plural %} {{ weight }} grades {% endblocktrans %} {% if participant_count != None %} {% blocktrans trimmed count counter=participant_count %} (from {{ participant_count }} distinct participant) {% plural %} (from {{ participant_count }} distinct participants) {% endblocktrans %} {% endif %}

{{ grade_histogram.html|safe }}

{% trans "Page-by-Page Statistics" %}

{% for astats in page_answer_stats_list %}
{% if astats.url %} {{ astats.group_id }}/{{ astats.page_id }}: {% else %} {{ astats.group_id }}/{{ astats.page_id }}: {% endif %} {{ astats.title }} {% blocktrans trimmed with answer_count=astats.answer_count count counter=astats.answer_count %} ({{ answer_count }} non-empty response, {% plural %} ({{ answer_count }} non-empty responses, {% endblocktrans %} {% blocktrans trimmed with total_count=astats.total_count count counter=astats.total_count %} {{ total_count }} response total) {% plural %} {{ total_count }} responses total) {% endblocktrans %}
{{ astats.average_correctness_percent|floatformat:1 }}%
{{ astats.average_wrongness_percent|floatformat:1 }}%
{{ astats.average_emptiness_percent|floatformat:1 }}%
{% endfor %}

{% trans "Time Distribution" %}

{{ time_histogram.html|safe }} {% endblock %}