{# data \Notimeo\CoreBundle\Custom\TreeNode[] #}
    {% for item in data %} {% set locked = item.item.locked|default(false) %}
  1. {% if item.item.path|default(false) == false or '' in item.item.path %} {{ item.item.title }} {% else %} {% if '' in item.item.path %} {% if item.item.siblings|length > 0 and item.item.siblings.first.hasLocale == true %} {% set item_path = item.item.siblings.first.path %} {% else %} {% set item_path = '/' %} {% endif %} {% else %} {% set item_path = item.item.locale.path %} {% endif %} {% set item_path = menu_path_changer(item_path) %} {{ item.item.title }} {% endif %} {{ locked == true ? '' : include('@EasyAdmin/default/includes/_actions.html.twig', { actions: _list_item_actions, request_parameters: _request_parameters, translation_domain: _entity_config.translation_domain, trans_parameters: _trans_parameters, item_id: item.item.id, item: item }, with_context = false) }}
    {% if item.siblings %} {% include '@Core/backend/actions/treelist-nestable.html.twig' with { 'data' : item.siblings } %} {% endif %}
  2. {% endfor %}