This commit is contained in:
Ross
2021-12-06 15:09:16 +00:00
parent feff4741b8
commit 6ad48c2970
+8 -5
View File
@@ -20,11 +20,14 @@
<h4>Associated Cases</h4> <h4>Associated Cases</h4>
<ul> <ul>
{% for series_finding in structure.seriesfinding_set.all %} {% for series_finding in structure.seriesfinding_set.all %}
{% for series in series_finding.series.all %} {{series_finding}}
{% for case in series.case.all %} {% for series in series_finding.series.all %}
{{case.get_link}} {{series}}
{% endfor %} {% for case in series.case.all %}
{% endfor %} {{case}}
{{case.get_link}}
{% endfor %}
{% endfor %}
{% endfor %} {% endfor %}
</ul> </ul>