This commit is contained in:
Ross
2024-12-16 18:04:18 +00:00
parent 12144e06d1
commit 7da968825c
+8 -4
View File
@@ -6,15 +6,19 @@
{% if collection %}
<h2>Collection: {{collection.name}}</h2>
{% endif %}
<details class="help-text">
<summary><i class="bi bi-info-circle"></i> Help</summary>
<p>This page shows the currently active examinations (that you have access to manage).</p>
{% if collection %}
<p>This page shows the examinations within the collection "{{collection.name}}".</p>
{% else %}
<p>This page shows the currently active examinations (that you have access to manage).</p>
{% endif %}
<p>Exams that are active will be available for candidates to take.</p>
<p>Once candidates have completed the exam (or subimitted some answers) they will immediately be able to view their answers on the platoform. They will not be able to see the correct answers (or their scores) until the exams results have been published.</p>
<p>Once candidates have completed the exam (or submitted some answers) they will immediately be able to view their answers on the platoform. They will not be able to see the correct answers (or their scores) until the exams results have been published.</p>
<p>A users submitted answers will remain available to the user until the exam is archived. Once an exam is archived the user will no longer be able to view their submitted answers.</p>
@@ -54,7 +58,7 @@
<span class="flex-col-2">
<a href="{% url app_name|add:':exam_overview' pk=exam.pk %}" class="exam-name">{{exam}}</a>
{% if exam.examcollection %}
<a href='{% url "generic:examcollection_detail" exam.examcollection_id %}' title="Collection"><i class="bi bi-collection"></i></a>
<a href='{% url "generic:examcollection_detail" exam.examcollection_id %}' title="This exam is part of the collection {{exam.examcollection.name}}"><i class="bi bi-collection"></i></a>
{% endif %}
</span>