{% extends 'rapids/exams.html' %} {% block content %}
{{plot|safe}}

{{ 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}}
{% for cid in cids %} {% endfor %}
Candidate ID Score Normalised Score
{{cid}} {{user_scores|get_item:cid}} {{user_scores_normalised|get_item:cid}}

Answers as a table TEST

{% for cid in cids %} {% comment %} {% endcomment %} {% endfor %} {% for question in questions %} {% for cid in cids %} {% comment %} {% endcomment %} {% with by_question|get_item:question|get_item:cid as ans_score %} {% endwith %} {% endfor %} {% endfor %} {% for cid in cids %} {% endfor %}
Candidate{{cid}}{{cid}}
Question {{forloop.counter}} {% if question.normal %} [N] {% else %} [A] {% endif %} {{ans_by_question|get_item:question|get_item:cid}}{{ans_score.0}}
Score:{{user_scores|get_item:cid}}
{% endblock %}