This commit is contained in:
Ross
2021-12-06 15:18:16 +00:00
parent c890d2ac12
commit 05c25ed4ce
+10 -8
View File
@@ -46,14 +46,16 @@
{% for series in case.series.all %}
{% for finding in series.findings.all %}
<div>
Findings: {% for f in finding.findings.all %}
{{f.get_link}},
{% endfor %}
<br />
Structure: {% for s in finding.structures.all %}
{{s.get_link}},
{% endfor %}<br />
Description: {{finding.description}}<br />
<span class="view-finding-details">
Findings: {% for f in finding.findings.all %}
{{f.get_link}},
{% endfor %}
<br />
Structure: {% for s in finding.structures.all %}
{{s.get_link}},
{% endfor %}<br />
Description: {{finding.description}}<br />
</span>
</div>
{% endfor %}