{% trans_default_domain 'front_default' %}
{% if tabs['main'] is defined %}
{% include 'core/webmaster-edit.html.twig' with {
'title': "Éditer le groupe d'onglets"|trans([], 'front_webmaster'),
'role': 'ROLE_FAQ',
'path': path('admin_tabcontent_tree', {'website': website.id, 'tab': tab.id})
} only %}
{% set active = true %}
{% for tabItem in tabs['main'] %}
{% set i18n = tabItem|i18n %}
{% set i18nMedia = tabItem|i18nMedia %}
{% set haveMedia = i18nMedia and i18nMedia.media.filename is defined and i18nMedia.media.filename %}
{% set mediaConfig = i18nMedia|thumbConfiguration(thumbConfiguration) %}
{% if haveMedia %}
{{ i18nMedia|thumb(mediaConfig) }}
{% endif %}
{% include 'front/' ~ websiteTemplate ~ '/actions/tab/content-tab.html.twig' with {'i18n': i18n} only %}
{% set children = tabs[tabItem.id] is defined ? tabs[tabItem.id] : [] %}
{% if children %}
{% set subActive = true %}
{% for child in children %}
{% set i18n = child|i18n %}
{% set subtabTitle = i18n and i18n.subtitle ? i18n.subtitle : child.adminName %}
{{ subtabTitle|unescape|raw }}
{% set subActive = false %}
{% endfor %}
{% set subActive = true %}
{% for child in children %}
{% set i18n = child|i18n %}
{% if haveMedia %}
{{ i18nMedia|thumb }}
{% endif %}
{% include 'front/' ~ websiteTemplate ~ '/actions/tab/content-tab.html.twig' with {'i18n': i18n} only %}