This commit is contained in:
Ross
2020-12-12 14:32:47 +00:00
parent 3f92d6d438
commit a4493248c3
+6 -4
View File
@@ -4,12 +4,14 @@
<div class="anatomy"> <div class="anatomy">
<h2>{{ exam.name }}</h2> <h2>{{ exam.name }}</h2>
{{unmarked}} {% if unmarked %}}
The following questions need marking
{% for question in unmarked.items %} {% for question in unmarked %}
{{ question.pk}} <a href="{% url 'anatomy:mark' question.pk %}">{{question.pk}}</a>
{% endfor %} {% endfor %}
{% endif %}
{% for user, value in user_answers_marks.items %} {% for user, value in user_answers_marks.items %}
<h3>Candidate: <a href="{% url 'anatomy:cid_scores' user %}">{{ user_names|get_item:user }}</a></h3> <h3>Candidate: <a href="{% url 'anatomy:cid_scores' user %}">{{ user_names|get_item:user }}</a></h3>
<!-- Answers: {{ user_answers_and_marks|get_item:user }}--> <!-- Answers: {{ user_answers_and_marks|get_item:user }}-->