diff --git a/atlas/templates/atlas/finding_detail.html b/atlas/templates/atlas/finding_detail.html
index 715f06ad..944e4960 100755
--- a/atlas/templates/atlas/finding_detail.html
+++ b/atlas/templates/atlas/finding_detail.html
@@ -27,6 +27,16 @@
{% endif %}
+ {# Also include cases referenced via CaseDisplaySet that list this finding #}
+ {% if finding.casedisplayset_set.all %}
+
Cases via Display Sets
+
+ {% for ds in finding.casedisplayset_set.all %}
+ - Case: {{ ds.case.get_link }} (Display set: {{ ds.name }})
+ {% endfor %}
+
+ {% endif %}
+
{% if finding.sbas_questions.all %}
Related SBA Questions
diff --git a/atlas/templates/atlas/structure_detail.html b/atlas/templates/atlas/structure_detail.html
index 75ef1243..c2624553 100755
--- a/atlas/templates/atlas/structure_detail.html
+++ b/atlas/templates/atlas/structure_detail.html
@@ -27,6 +27,16 @@
{% endfor %}
+ {# Include cases referenced via CaseDisplaySet that list this structure #}
+ {% if structure.casedisplayset_set.all %}
+
Cases via Display Sets
+
+ {% for ds in structure.casedisplayset_set.all %}
+ - Case: {{ ds.case.get_link }} (Display set: {{ ds.name }})
+ {% endfor %}
+
+ {% endif %}
+
{% if structure.sbas_questions.all %}
Related SBA Questions