{% extends 'longs/exams.html' %} {% block content %}

{{ exam.name }}

{% if unmarked %} The following questions need marking {% for exam_index in unmarked %} {{ exam_index|add:1 }} {% endfor %} {% endif %}

Stats

Candidates: {{cids|length}}
Max score: {{max_score}}
Mean: {{mean}}, Median {{median}}, Mode {{mode}}
{{plot|safe}}
{% for user, value in user_answers_marks.items %} {% endfor %}
Candidate ID Score
{{user}} {{user_scores|get_item:user}}

Answers as a table

{% for cid in cids %} {% endfor %} {% for question in questions %} {% for ans, score in by_question|get_item:question %} {% endfor %} {% endfor %} {% for score in user_scores_list %} {% endfor %}
Candidate{{cid}}
Question {{forloop.counter}}{{score}}
Score:{{score}}
{% endblock %}