23 lines
753 B
HTML
23 lines
753 B
HTML
{% extends 'physics/base.html' %}
|
|
|
|
{% block content %}
|
|
<div class="physics">
|
|
<h2>Exam: {{ exam.name }}</h2>
|
|
<h3>Candidate: {{ cid }}</h3>
|
|
Answers:
|
|
<ul>
|
|
{% for question, ans in answers_and_marks %}
|
|
<li class="user-answer-li">Question {{forloop.counter}} - {{ question.stem }}</li>
|
|
<ol type="a">
|
|
{% for q, a, score, correct_answer in ans %}
|
|
<li>{{q}}: Correct answer: {{correct_answer}} <br />{{a}} <span class="answer-{{score}}">(Score: {{score}})</span></li>
|
|
{% endfor %}
|
|
</ol>
|
|
{% endfor %}
|
|
</ul>
|
|
<br /> Total mark: {{ total_score }} / {{max_score}}
|
|
<div>
|
|
<a href="{% url 'cid_scores' cid %}">Other exams</a>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |