{% extends "course/course-base.html" %} {% block title %} Analytics - CourseFlow {% endblock %} {% block content %}

Analytics: {{ flow_identifier}}

Grade Distribution

{{ grade_histogram.total_weight }} grade{{ grade_histogram.total_weight|pluralize }} {% if participant_count != None %} (from {{ participant_count }} distinct participants) {% endif %}

{{ grade_histogram.html|safe }}

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 }} ({{ astats.answer_count }} non-empty response{{ astats.answer_count|pluralize }}, {{ astats.total_count }} response{{ astats.total_count|pluralize }} total)
{{ astats.average_correctness_percent|floatformat:1 }}%
{{ astats.average_wrongness_percent|floatformat:1 }}%
{{ astats.average_emptiness_percent|floatformat:1 }}%
{% endfor %}

Time Distribution

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