{% extends 'base.html.twig' %} {% block title %}Liste location{% endblock %} {% block stylesheets %} {{ parent()}} {% endblock %} {% block javascripts %} {{ parent() }} {% endblock %} {% block content %} {% include 'shared/layout/_content-header.html.twig' with { 'text_btn': 'Ajouter nouveau', 'class': 'primary', 'path': path('app_location_new', {'cityId': city.id}), 'entity_name': 'Location', 'item_lien': [ { 'label': 'Liste', 'path': "#" } ] } %} {% include 'shared/componnents/_tables/_index.html.twig' with { 'datas': locations, 'columns': ['Nom', 'Status'], 'entity_name': 'Location', 'item_remove': true, 'item_edit': { 'action': true, 'path': 'app_location_edit', 'mapping_1': 'city', 'param_1': 'cityId', 'attribute_1': 'id', 'param_2': 'id', 'attribute_2': 'id' } } %} {% endblock %}