{% extends 'base.html.twig' %}
{% block title %}Liste type supplément{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% include 'shared/layout/_content-header.html.twig' with {
'item_lien': [
{
'label': 'Liste',
'path': path('app_supplement_type_index')
}
],
'text_btn': 'Ajouter nouveau',
'class': 'primary',
'path': path('app_supplement_type_new'),
'entity_name': 'TypeSupplement'
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': supplement_types,
'columns': ['Nom', 'Statut', 'Type'],
'entity_name': 'SupplementType',
'item_remove': true,
'item_edit': {
'action': true,
'path': 'app_supplement_type_edit',
'param_1': 'id',
'attribute_1': 'id'
},
'item_show': false
} %}
{% endblock %}