{% extends 'base.html.twig' %}
{% block title %}Liste pays{% 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_country_new'),
'entity_name': 'Country'
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': countries,
'columns': ['Nom', 'Statut', 'Code3', 'Code2'],
'entity_name': 'Country',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_country_edit',
'param_1': 'id',
'attribute_1': 'id'
},
'item_select2': [
{
'path': 'app_city_index',
'param_1': 'countryId',
'attribute_1': 'id',
'label': 'Liste des villes:'
}
]
} %}
{% endblock %}