{% extends 'base.html.twig' %}
{% block title %} Liste Agences {% 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_agency_new'),
'entity_name': 'Agency'
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': agencies,
'columns': ['Nom', 'Adresse', 'Téléphone', 'Email', 'Active','Agence principale'],
'entity_name': 'Agency',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_agency_edit',
'param_1': 'id',
'attribute_1': 'id'
}
} %}
{% endblock %}