This commit is contained in:
Ross
2021-08-23 19:04:37 +01:00
parent efc93be7e2
commit efaeba1c34
+1 -1
View File
@@ -9,7 +9,7 @@ CID: {{cid}}
{{answer_count}} out of {{exam_length}} questions answered. Click to go to question.
<div class="sba-finish-list">
{% for question, answer in question_answer_tuples %}
<button {% 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></button>
<a href="{% url 'sbas:exam_take' pk=exam.id sk=forloop.counter0 cid=cid %}"><button {% if not answer %}class="unanswered"{% endif %}>{{forloop.counter}}: {{answer.answer}}</button></a>
{% endfor %}
</div>