{% load ooi_extra %} {% if tree_node.tree_meta.has_findings %}
{% if tree_node.tree_meta.has_findings and tree_node.tree_meta.depth > 1 %}

Findings for {{ tree_node.ooi_type }} {{ tree_node.human_readable }}

{% endif %} {% for finding in tree_node.children %} {% if finding.ooi_type == "Finding" %} {% include "partials/ooi_summary_finding.html" with parent=ooi_tree finding=finding %} {% endif %} {% endfor %} {% if tree_node.tree_meta.depth > 1 %}

Details for {{ tree_node.ooi_type }} {{ tree_node.human_readable }}

{% for key, value in tree_node.items %} {% if key not in "id,human_readable,tree_meta,children" and value is not None %}
{{ key }}
{{ value }}
{% endif %} {% endfor %}
{% endif %} {% if "Job" in tree_node.tree_meta.child_ooi_types %}

Jobs that found {{ tree_node.human_readable }}

These can include previous (older) jobs.

{% endif %}
{% endif %} {% for child in tree_node.children %} {% if child.ooi_type not in "Job,KATFindingType,CVEFindingType" %} {% include "partials/ooi_summary_block.html" with tree_node=child %} {% endif %} {% endfor %}