This form is designed to quickly populate the same finding across different series.
Cloning a finding from this form will populate the details with a blank viewport (you will need to add visual annotation and set the display as intended).
{% for finding in findings %}
{{ finding.title }}
{% if finding.description %}
Description:
{{ finding.description|truncatechars:100 }}
{% endif %}
{% if finding.findings.all %}
Findings:
{% for subfinding in finding.findings.all %}
{{ subfinding.get_link }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if finding.structures.all %}
Structures:
{% for structure in finding.structures.all %}
{{ structure.get_link }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% endif %}
{% if finding.conditions.all %}
Conditions:
{% for condition in finding.conditions.all %}
{{ condition.get_link }}{% if not forloop.last %}, {% endif %}
{% endfor %}