Update subspecialty and pathological process display to use 'None' badge for empty states

This commit is contained in:
Ross
2026-03-09 09:48:42 +00:00
parent 2c482216c1
commit af9bfabeed
@@ -233,7 +233,7 @@
<span class="badge bg-secondary ms-1">{{ sub.get_link|safe }}</span>
{% endfor %}
{% else %}
<span class="text-muted me-2">No subspecialty</span>
<span class="badge bg-secondary ms-1 text-muted">None</span>
{% endif %}
</span>
{% if can_edit %}
@@ -252,7 +252,7 @@
<span class="badge bg-secondary ms-1">{{ p.get_link|safe }}</span>
{% endfor %}
{% else %}
<span class="text-muted me-2">No pathological process</span>
<span class="badge bg-secondary ms-1 text-muted">None</span>
{% endif %}
</div>