{% for child, identifier in self.visible_children_with_identifiers %}
{% if child.show_panel_furniture %}
{# If there's at least one child that shows the panel furniture, render the tab navigation #}
{% include 'wagtailadmin/shared/tabs/tab_nav_link.html' with tab_id=identifier title=child.heading classname=child.classes|join:" " %}
{% endif %}
{% endfor %}
{% for child, identifier in self.visible_children_with_identifiers %}
{% if child.show_panel_furniture %}
{{ child.render_html }}
{% else %}
{# If all of the children in the tab do not show the panel furniture, render them without the tab section #}
{{ child.render_html }}
{% endif %}
{% endfor %}