{% extends "base.html" %} {% load url %} {% load workstations %} {% load reader_study_tags %} {% load static %} {% load meta_attr %} {% block breadcrumbs %} {% endblock %} {% block content %}

{{ object.title }} Statistics

Statistics per case

{% for question in object.statistics.questions %} {% endfor %} {% for entry in object.statistics.scores_by_case %} {% for question in object.statistics.questions %} {% get_ground_truth object entry.id question as ground_truth %} {% endfor %} {% endfor %}
DisplaySet ID Total score / max score Average score{{ question }} (GT)View case
{{ entry.id }} {{ entry.sum }} / {{ object.statistics.max_score_cases }} {{ entry.avg|floatformat:4 }}{{ ground_truth }}

Statistics per question

{% for entry in object.statistics.scores_by_question %} {% endfor %}
Question Total score / max score Average score
{{ entry.question__question_text }} {{ entry.score__sum }} / {{ object.statistics.max_score_questions }} {{ entry.score__avg|floatformat:4 }}
{% endblock %} {% block script %} {{ block.super }} {% include 'workstations/partials/session-control.html' %} {% endblock %}