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

{{ exam.name }}

User answer scores are cached, if you update or change an answer you will need to refresh the scores. {% if unmarked %} {% 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}} {{user_scores|get_item:user}}

Results 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}}{{ans}}
Score:{{score}}
{% endblock %}