Findings are display sets that can be added to series. Once added they will appear here on linked cases.
To add a finding to a series, select the series and then click the "Add finding" button.
{% endif %}
Series Findings
{% for series in case.get_ordered_series %}
{% for finding in series.findings.all %}
{% if finding.findings %}
Findings: {% for f in finding.findings.all %}
{{f.get_link}},
{% endfor %}
{% endif %}
{% if finding.conditions %}
Conditions: {% for c in finding.conditions.all %}
{{c.get_link}},
{% endfor %}
{% endif %}
{% if finding.structures %}
Structure: {% for s in finding.structures.all %}
{{s.get_link}},
{% endfor %}
{% endif %}
{% if finding.description %}
Description: {{finding.description}}
{% endif %}
{% endfor %}
{% empty %}
No series associated with case.
{% endfor %}