{% if findings %} {% for f in findings %}
{% if f.series %}{{ f.series.id }}{% else %}Series{% endif %}{% if f.description %}: {{ f.description|truncatechars:80 }}{% endif %} {{ f.pk }}

{% if f.findings.all %} {% for sub in f.findings.all %} {{ sub.name }} {% endfor %} {% endif %} {{ f.description }}

{% if f.series %} View series {% endif %}
{% endfor %} {% else %}
No findings found
{% endif %}