{% load i18n %}
{% comment %}
Flat row for IPAM hierarchy (in both) — no nested details, no separator lines.
Structural prefix parents are skipped; only diff_intersection_pair nodes are shown.
{% endcomment %}
{% if node.diff_intersection_pair %}
{% elif node.diff_ipam_hierarchy_prefix or node.children %}
{% for child in node.children %}
{% include "netbox_nsm/inc/addr_intersection_flat_node.html" with node=child %}
{% endfor %}
{% endif %}