26 lines
727 B
HTML
26 lines
727 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
CID: {{cid}}
|
|
|
|
<h2>Exam: {{exam.name}}</h2>
|
|
|
|
<div><p>Questions</p></div>
|
|
{{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 %}
|
|
<a href="{% url 'sbas:exam_take' pk=exam.id sk=forloop.counter0 cid=cid passcode=passcode %}"><button {% if not answer %}class="unanswered"{% endif %}>{{forloop.counter}}: {{answer.answer}}</button></a>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
Start time: {{cid_user_exam.start_time}}
|
|
|
|
{% endblock %}
|
|
|
|
{% block js %}
|
|
<script>
|
|
$(document).ready(() => {
|
|
})
|
|
</script>
|
|
{% endblock %}
|