diff --git a/anatomy/templates/anatomy/exam_scores_new.html b/anatomy/templates/anatomy/exam_scores_new.html new file mode 100644 index 00000000..bd9fd93b --- /dev/null +++ b/anatomy/templates/anatomy/exam_scores_new.html @@ -0,0 +1,80 @@ +{% 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 user, value in user_answers_marks.items %} + + + + + + {% endfor %} +
Candidate IDScoreNormalised Score
{{user}}{{user_scores|get_item:user}}{{user_scores_normalised|get_item:user}}
+
+
+

Answers as a table TEST

+ + + + + {% for cid in cids %} + {% comment %} {% endcomment %} + + {% endfor %} + + + + {% for question in questions %} + + + {% for cid in cids %} + + {% 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}}
Score:{{user_scores|get_item:cid}}
+ +
+{% endblock %} +