{% extends 'base.html.twig' %}
{% block title %}Liste villes{% 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_city_new', {'countryId': country_id}),
'entity_name': 'City',
'item_lien': [
{
'label': 'Liste des pays',
'path': path('app_country_index')
},
{
'label': '/Liste',
'path': '#'
}
]
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': cities,
'columns': ['Nom', 'Statut', 'Top destination'],
'entity_name': 'City',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_city_edit',
'mapping_1': 'country',
'param_1': 'countryId',
'attribute_1': 'id',
'param_2': 'id',
'attribute_2': 'id'
},
'item_select2': [
{
'path': 'app_location_index',
'mapping_1': 'country',
'param_1': 'countryId',
'attribute_1': 'id',
'param_2': 'cityId',
'attribute_2': 'id',
'label': 'Liste des locations:'
}
]
} %}
{% endblock %}