{% extends 'base.html.twig' %}
{% block title %}Liste agences configuration{% 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_config_new'),
'entity_name': 'AgencyConfig',
'item_lien': [
{
'label': 'Liste paramètres généraux'
}
]
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': agencyConfig,
'columns': ['Nom', 'Status', 'Bénéficiaire', 'Nom de banque', 'Rib'],
'entity_name': 'AgencyConfig',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_agency_config_edit',
'param_1': 'id',
'attribute_1': 'id'
},
} %}
{% endblock %}