{% extends '@EasyAdmin/crud/index.html.twig' %} {% block head_stylesheets %} {{ parent() }} {% endblock %} {% block table_body %} {% for entity in entities %} {% set item = entity.instance %} {% for field in entity.fields %} {{ include(field.templatePath, { field: field, entity: entity }, with_context = false) }} {% endfor %} {% for action in entity.actions %} {{ include(action.templatePath, { action: action, entity: entity, isIncludedInDropdown: action.isIncludedInDropdown ?? false }, with_context = false) }} {% endfor %} {% else %} {{ 'datagrid.no_results'|trans({}, 'EasyAdminBundle') }} {% endfor %} {% endblock %}