diff --git a/atlas/templates/atlas/collection_detail.html b/atlas/templates/atlas/collection_detail.html index e625fa09..9ce7f965 100644 --- a/atlas/templates/atlas/collection_detail.html +++ b/atlas/templates/atlas/collection_detail.html @@ -1,34 +1,6 @@ {% extends 'atlas/exams.html' %} -{% load partials %} - -{% partialdef casedetails-management-links %} - - ( - - {% if casedetail.default_viewerstate %} - - {% endif %} - ) - - () - - {% if collection.collection_type == "QUE" %} - ( - {% if casedetail.question_schema %} - - {% else %} - - {% endif %} - - ) - {% endif %} - - {% if casedetail.case.previous_case %} - ( - ) - {% endif %} -{% endpartialdef %} +{# per-case management links removed here; will include via separate partial to keep template logic simple #} {% block content %}

{{collection.name}}

@@ -36,107 +8,108 @@ {% include 'exam_notes.html' %}
- Exam mode: {{collection.exam_mode}} (open access: {{collection.exam_open_access}})
- {% include "generic/partials/exams/exam_status.html#publish-results" %} - {% include "generic/partials/exams/exam_status.html#exam-active" %} - Collection Type: {{collection.get_collection_type_display}}
- Self review: {{collection.self_review}}
- Open access: {{collection.open_access}}
- {% if collection.prerequisites.exists %} - Prerequisite collections: - +
+
+
+
+
+
+

{{ collection.name }}

+
Type: {{ collection.get_collection_type_display }} ยท Mode: {{ collection.exam_mode }}
+
+
+ {% if collection.collection_type == "VIV" %} + Start Viva + {% else %} + Take / View + + Review collection here + {% endif %} +
+
+
+
+
-

- -

- {% endif %} -
+
+
+ {% include 'exam_notes.html' %} +
+
Cases
+
+
    + {% for casedetail in casesdetails %} +
  1. +
    +
    + Case {{ forloop.counter }}: + {% if casedetail.case.series.count == 0 %} + + {% endif %} + {{ casedetail.case.title }} +
    +
    {% include 'atlas/partials/casedetails_management_links.html' %}
    +
    +
  2. + {% empty %} +
  3. No cases in this collection.
  4. + {% endfor %} +
+
+
- {% if collection.collection_type == "VIV" %} -

- {% else %} -

This collection will be available to view/take here{% if not collection.active %} (when active){% endif %} -

Review collection here - {% endif %} + {% include 'exam_overview_js.html' %} +

+ +
- - - - -
- - - {% endif %} - {% include 'exam_overview_js.html' %} -{% endblock %} + {% endblock %}