From 4e47083fcdcf371b866221f6051f7eb3ba3af1fe Mon Sep 17 00:00:00 2001 From: Ross Date: Mon, 8 Dec 2025 10:35:58 +0000 Subject: [PATCH] . --- .../generic/examcollection_detail.html | 174 +++++++++++------- 1 file changed, 108 insertions(+), 66 deletions(-) diff --git a/generic/templates/generic/examcollection_detail.html b/generic/templates/generic/examcollection_detail.html index 2f91165e..17aa224d 100755 --- a/generic/templates/generic/examcollection_detail.html +++ b/generic/templates/generic/examcollection_detail.html @@ -2,106 +2,148 @@ {% block content %} -

- {{ object.name }} - {% if object.date %} - [{{object.date}}] - {% endif %} -

+
+
+
+

{{ object.name }} {% if object.date %}[{{ object.date }}]{% endif %}

+
Authors: {{ object.get_authors }}
+
+
+ +
+
-

- Edit - Clone - Delete -

- -
Authors: {{ object.get_authors }}
- -

This collection contains the following exams

+

This collection contains the following exams

{% if object.anatomy_exams.all %} -

Anatomy Exams:

- {% with exams=object.anatomy_exams.all app_name="anatomy" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - - View exam list - - -
- +
+
+ Anatomy Exams +
+ View exam list + +
+
+
+ {% with exams=object.anatomy_exams.all app_name="anatomy" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %} {% if object.longs_exams.all %} -

Longs Exams:

- {% with exams=object.longs_exams.all app_name="longs" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - View exam list -
- +
+
+ Longs Exams +
+ View exam list + +
+
+
+ {% with exams=object.longs_exams.all app_name="longs" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %} {% if object.rapids_exams.all %} -

Rapids Exams:

- {% with exams=object.rapids_exams.all app_name="rapids" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - View exam list -
- +
+
+ Rapids Exams +
+ View exam list + +
+
+
+ {% with exams=object.rapids_exams.all app_name="rapids" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %} {% if object.shorts_exams.all %} -

Shorts Exams:

- {% with exams=object.shorts_exams.all app_name="shorts" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - View exam list -
- +
+
+ Shorts Exams +
+ View exam list + +
+
+
+ {% with exams=object.shorts_exams.all app_name="shorts" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %} {% if object.physics_exams.all %} -

Physics Exams:

- {% with exams=object.physics_exams.all app_name="physics" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - View exam list +
+
+ Physics Exams + View exam list +
+
+ {% with exams=object.physics_exams.all app_name="physics" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %} {% if object.sbas_exams.all %} -

SBAs Exams:

- {% with exams=object.sbas_exams.all app_name="sbas" %} - {% include "exam_list.html#exam-list" %} - {% endwith %} - View exam list +
+
+ SBAs Exams + View exam list +
+
+ {% with exams=object.sbas_exams.all app_name="sbas" %} + {% include "exam_list.html#exam-list" %} + {% endwith %} +
+
{% endif %}
-
- -
+
+
+ +
-
- -
+
+ +
+
- {% include 'exam_overview_js.html' %} + {% include 'exam_overview_js.html' %} + +
{# .container end #} {% endblock %} {% block css %} {% endblock %} \ No newline at end of file