{% extends 'atlas/exams.html' %}
{% block content %}
{{plot|safe}}
{% if unmarked %}
{% endif %}
Stats
Candidates: {{cids|length}}
Max score: {{max_score}}
Mean: {{mean}}, Median {{median}}, Mode {{mode}}
| Candidate ID |
Score |
{% comment %} Normalised Score | {% endcomment %}
{% comment %} {% for user, value in user_answers_marks.items %} {% endcomment %}
{% for cid in cids %}
| {{cid}} |
{{user_scores|get_item:cid}} |
{% comment %} {{user_scores_normalised|get_item:user}} | {% endcomment %}
{% endfor %}
Answers as a table
| Candidate |
{% for cid in cids %}
{{cid}} |
{% comment %} {{cid}} | {% endcomment %}
{% comment %} {{cid}} | {% endcomment %}
{% endfor %}
{% for question in questions %}
| Question {{forloop.counter}}
|
{% comment %} {% for cid in cids %}
{{ans_by_question|get_item:question|get_item:cid}} |
{% endfor %} {% endcomment %}
{% for cid in cids %}
{% with by_question|get_item:question|get_item:cid as ans_score %}
{{ans_score.1}} |
{% endwith %}
{% endfor %}
{% endfor %}
| Score: |
{% for cid in cids %}
{{user_scores|get_item:cid}} |
{% endfor %}
{% endblock %}