Add prior cases information to collection case view template

This commit is contained in:
Ross
2025-11-24 12:19:56 +00:00
parent 3f00311136
commit 0c412dfff6
2 changed files with 15 additions and 2 deletions
@@ -71,8 +71,15 @@
</div>
{% endif %}
{% if show_history %}
<div>
History: {{casedetail.get_history_pre|linebreaks}}
<div class="d-flex justify-content-between align-items-start">
<div>
History: {{casedetail.get_history_pre|linebreaks}}
</div>
{% if has_priors %}
<div class="ms-2">
<span title="This case has priors available for comparison" class="badge bg-info text-dark small">Priors{% if prior_count %} ({{ prior_count }}){% endif %}</span>
</div>
{% endif %}
</div>
{% endif %}