Add subspecialty, pathological process, and diagnostic certainty to case display

This commit is contained in:
Ross
2025-10-31 21:33:25 +00:00
parent c0d71dfabc
commit 7116983e3d
+15 -13
View File
@@ -119,6 +119,20 @@
ID: {{ case.id }}
</div>
Subspecialty:
<ul>
{% for sub in case.subspecialty.all %}
<li>{{sub.get_link}}</li>
{% endfor %}
</ul>
<b>Pathological Process:</b>
<ul>
{% for p in case.pathological_process.all %}
<li>{{p.get_link}}</li>
{% endfor %}
</ul>
<b>Diagnostic certainty:</b> {{case.get_diagnostic_certainty_display}}<br />
<details id="dicom-viewer-details">
<summary>Viewer</summary>
@@ -398,19 +412,7 @@
</div>
</div>
</div>
Subspecialty:
<ul>
{% for sub in case.subspecialty.all %}
<li>{{sub.get_link}}</li>
{% endfor %}
</ul>
<b>Pathological Process:</b>
<ul>
{% for p in case.pathological_process.all %}
<li>{{p.get_link}}</li>
{% endfor %}
</ul>
<b>Diagnostic certainty:</b> {{case.get_diagnostic_certainty_display}}<br />
<b>Collections:</b>
{% if can_edit %}