improve exam collections management
This commit is contained in:
@@ -2,10 +2,15 @@
|
||||
|
||||
{% block content %}
|
||||
<h1>Examinations</h1>
|
||||
|
||||
{% 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 examations (that you have access to manage).</p>
|
||||
<p>This page shows the currently active examinations (that you have access to manage).</p>
|
||||
|
||||
<p>Exams that are active will be available for candidates to take.</p>
|
||||
|
||||
|
||||
@@ -42,6 +42,18 @@
|
||||
</p>
|
||||
{% endif %}
|
||||
|
||||
|
||||
{% if collections %}
|
||||
<h2>Exam collections</h2>
|
||||
<ul>
|
||||
{% for collection in collections %}
|
||||
<li><a href="{% url 'generic:examcollection_detail' collection.pk %}">{{collection.name}}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
||||
{% endif %}
|
||||
|
||||
|
||||
|
||||
<p><a href="http://www.penracourses.org.uk/rts">RTS is available here</a></p>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user