This commit is contained in:
Ross
2021-12-06 15:29:19 +00:00
parent d9e7779828
commit 8a0074977e
+16 -9
View File
@@ -46,21 +46,28 @@
{% for series in case.series.all %}
{% for finding in series.findings.all %}
<div class="finding-box">
<span>
Series: {{series}} |&nbsp;
</span>
{% if finding.findings.all %}
<span>
Findings: {% for f in finding.findings.all %}
{{f.get_link}},
{{f.get_link}},&nbsp;
{% endfor %}
</span>
{% endif %}
<span>
Structure: {% for s in finding.structures.all %}
{{s.get_link}},
{% endfor %}
</span>
<span>
Description: {{finding.description}}
</span>
{% if finding.structures.all %}
<span>
Structure: {% for s in finding.structures.all %}
{{s.get_link}},&nbsp;
{% endfor %}
</span>
{% endif %}
{% if finding.description %}
<span>
Description: {{finding.description}}
</span>
{% endif %}
</div>
{% endfor %}