{% 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}}
| Candidate ID |
Score |
Normalised Score |
{% for cid in cids %}
| {{cid}} |
{{user_scores|get_item:cid}} |
{{user_scores_normalised|get_item:cid}} |
{% endfor %}
Answers as a table TEST
| Candidate |
{% for cid in cids %}
{% comment %} {{cid}} | {% endcomment %}
{{cid}} |
{% endfor %}
{% for question in questions %}
| Question {{forloop.counter}}
{% if question.normal %}
[N]
{% else %}
[A]
{% endif %}
|
{% for cid in cids %}
{% comment %} {{ans_by_question|get_item:question|get_item:cid}} | {% endcomment %}
{% with by_question|get_item:question|get_item:cid as ans_score %}
{{ans_score.0}} |
{% endwith %}
{% endfor %}
{% endfor %}
| Score: |
{% for cid in cids %}
{{user_scores|get_item:cid}} |
{% endfor %}
{% endblock %}