{% if ajax is not defined %} {% set ajax = false %} {% endif %} {% extends ajax ? 'Admin/admin.html.twig' : 'Admin/base.html.twig' %} {% block content %}
{% if entity is not defined %} {% set entity = app.request.attributes.get("_controller")|split("Controller")[1]|split("\\")[1] %} {% endif %}
{% if isMobile() %}
{% include('Admin/search-box.html.twig') %}
{% include('Admin/counter.html.twig') %} {% include('Admin/buttons.html.twig') %}
{% else %}
{% include('Admin/search-box.html.twig') %}
{% include('Admin/counter.html.twig') %}
{% include('Admin/buttons.html.twig') %}
{% endif %}
{% block table %}
{% if view is defined and view %} {% include(view) %} {% else %} {% include(''~entity~((isMobile is defined and isMobile and isMobile()) ? mobileView is defined ? mobileView : '/mobile-list.html.twig' : '/list.html.twig')) %} {% endif %}
{% set expanded = true %} {% include('Admin/counter.html.twig') %} {% endblock %}
{% endblock %}