This commit is contained in:
Ross
2021-07-29 21:31:56 +01:00
parent e6af06d731
commit cfad594bec
+1 -1
View File
@@ -9,7 +9,7 @@ CID: {{cid}}
{{answer_count}} out of {{exam_count}} questions answered. Click to go to question.
<ul class="question-list">
{% for question, answer in question_answer_tuples %}
<li {% if not answer %}class="unanswered"{% endif %}><a href="{% url 'sbas:exam_take' pk=exam.id sk=forloop.counter0 cid=cid" %}>{{forloop.counter}}: {{answer.answer}}</a></li>
<li {% if not answer %}class="unanswered"{% endif %}><a href="{% url 'sbas:exam_take' pk=exam.id sk=forloop.counter0 cid=cid %}">{{forloop.counter}}: {{answer.answer}}</a></li>
{% endfor %}
</ul>