diff --git a/atlas/templates/atlas/structure_detail.html b/atlas/templates/atlas/structure_detail.html
index 926440ec..f9d2f944 100755
--- a/atlas/templates/atlas/structure_detail.html
+++ b/atlas/templates/atlas/structure_detail.html
@@ -4,22 +4,33 @@
-
-
-
Name: {{structure.name}}
- Primary name: {{structure.primary}}
- Synonyms: {{structure.synonym.all|join:", "}}
-
+
+
+
Name: {{structure.name}}
+ Primary name: {{structure.primary}}
+ Synonyms: {{structure.synonym.all|join:", "}}
+
+ Associated Cases
+
+ {% for series_finding in structure.seriesfinding_set.all %}
+ {% for series in series_finding.series.all %}
+ {% for case in series.case.all %}
+ {{case.get_link}}
+ {% endfor %}
+ {% endfor %}
+
+ {% endfor %}
+
{% endblock %}
{% block js %}
-{% endblock %}
\ No newline at end of file
+{% endblock %}