This commit is contained in:
Ross
2022-04-09 00:30:26 +01:00
parent 3f5ef753d5
commit b35914de88
+2 -2
View File
@@ -9,7 +9,7 @@
<div class="alert alert-warning" role="alert">
The following questions need marking
{% for exam_index in unmarked %}
<a href="{% url 'atlas:collection_mark_question' exam.pk exam_index %}">{{ exam_index|add:1 }}</a>
<a href="{% url 'atlas:collection_mark_question' pk exam_index %}">{{ exam_index|add:1 }}</a>
{% endfor %}
</div>
@@ -55,7 +55,7 @@
</thead>
{% for question in questions %}
<tr>
<td><a href="{% url 'atlas:mark' exam_pk=exam.pk sk=forloop.counter0 %}">Question {{forloop.counter}}</a>
<td><a href="{% url 'atlas:collection_mark_question' pk=exam.pk sk=forloop.counter0 %}">Question {{forloop.counter}}</a>
</td>
{% comment %} {% for cid in cids %}
<td class="atlas-ans user-answer-score-{{score_by_question|get_item:question|get_item:cid}}" title="answer score: {{score_by_question|get_item:question|get_item:cid}}">{{ans_by_question|get_item:question|get_item:cid}}</td>