This commit is contained in:
Ross
2024-07-22 09:07:08 +01:00
parent 0915ef555c
commit 1acc9808b5
2 changed files with 18 additions and 15 deletions
@@ -16,6 +16,9 @@
</h2>
{% comment %} <details>
<summary class="opacity-50">Help <i class="bi bi-info-circle"></i></summary>
</details> {% endcomment %}
{% if not question_completed %}
@@ -53,7 +56,7 @@
{% if collection.show_ohif_viewer_link %}
<div>
<a target="_blank" href="/ohif/viewer/dicomjson?url=https://www.penracourses.org.uk{% url 'atlas:collection_case_dicom_json' collection.pk case.pk %}">View case in OHIF</a>
<a target="_blank" href="/ohif/viewer/dicomjson?url=https://www.penracourses.org.uk{% url 'atlas:collection_case_dicom_json' collection.pk case.pk %}" title="Click to open the case in the advanced viewer. This will open in a new tab/window.">Launch advanced viewer.</a>
</div>
{% endif %}
@@ -56,9 +56,10 @@
Start time: {{cid_user_exam.start_time}}
{% if collection.self_review %}
<p>Completed: <span id="completed-state">{{cid_user_exam.completed}}</span></p>
{% endif %}
{% if not cid_user_exam.completed %}
{% if not collection.self_review and not cid_user_exam.completed %}
<form hx-post=""
hx-headers='{"X-CSRFToken": "{{ csrf_token }}"}'
hx-delete
@@ -70,7 +71,6 @@
</form>
{% endif %}
{% endif %}
{% endblock %}