{% for card in tab.cards %}
{% show_card card override_card_context=panel_no_header_context %}
{% endfor %}
{% endfor %}
{% else %}
{% for card in child.cards %}
{% if child.menu or child.title %}
{% show_card card override_card_context=panel_no_header_context %}
{% else %}
{% show_card card override_card_context=panel_card_context %}
{% endif %}
{% endfor %}
{% endif %}
{% elif child.type == "split" %}
{% if child.collapsible %}
{% if child.title %}
{{ child.title }}
{% endif %}
{% include "cards/standard/_panel_split.html" with split=child.split panel_card_context=panel_card_context panel_no_header_context=panel_no_header_context %}
{% else %}
{% include "cards/standard/_panel_split.html" with split=child.split panel_card_context=panel_card_context panel_no_header_context=panel_no_header_context %}
{% endif %}
{% endif %}
{% endfor %}