{% extends 'anatomy/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}}
| Candidate ID |
Score |
{% for user, value in user_answers_marks.items %}
| {{user}} |
{{user_scores|get_item:user}} |
{% endfor %}
Answers as a table
| Candidate |
{% for cid in cids %}
{{cid}} |
{% endfor %}
{% for question in questions %}
| Question {{forloop.counter}} |
{% for ans, score in by_question|get_item:question %}
{{ans}} |
{% endfor %}
{% endfor %}
| Score: |
{% for score in user_scores_list %}
{{score}} |
{% endfor %}
{% endblock %}