{% set tab_panes = tab_panes | default({}) %} {% set pane = tab_panes.get(block.id) %} {% set tabs_wrap_align = block.extra.get('wrap_align', '') if block.type == 'tabs' and block.extra else '' %} {% set content_hidden = block.type == 'content' and block.extra and block.extra.get('initial_hidden') %}
{% if spec.config.lazy.enabled and block.lazy and not skip_lazy %}{% include 'lazy_placeholder.html' %} {% elif block.type == 'header' %}{% include 'header.html' %} {% elif block.type == 'toolbar' %}{% include 'toolbar.html' %} {% elif block.type == 'filters' %}{% include 'filters.html' %} {% elif block.type == 'actions' %}{% include 'actions.html' %} {% elif block.type == 'table' %}{% include 'table.html' %} {% elif block.type == 'charts' %}{% include 'charts.html' %} {% elif block.type == 'kpi' %}{% include 'kpi.html' %} {% elif block.type == 'cards' %}{% include 'cards.html' %} {% elif block.type == 'card_groups' %}{% include 'card_groups.html' %} {% elif block.type == 'tabs' %}{% include 'tabs.html' %} {% elif block.type == 'nav' %}{% include 'nav.html' %} {% elif block.type == 'content' %}{% include 'content.html' %} {% elif block.type == 'form' %}{% include 'form.html' %} {% elif block.type == 'overlay' %}{% include 'overlay.html' %} {% elif block.type == 'template' %}{% include 'template.html' %} {% elif block.type == 'gallery' %}{% include 'gallery.html' %} {% elif block.type == 'image' %}{% include 'image.html' %} {% endif %}