{% extends 'base.html.twig' %}
{% block title %}Liste utilisateurs{% 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_user_new'),
'entity_name': 'User'
} %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': users,
'columns': ['Email', 'Nom complet', 'Roles', 'Photo'],
'entity_name': 'User',
'item_edit': {
'action': true,
'path': 'app_user_edit',
'param_1': 'id',
'attribute_1': 'id'
},
'item_logs': {
'action': true,
'path': 'app_activity_log_index',
'param_1': 'userId',
'attribute_1': 'id'
},
'item_permissions': {
'action': true,
'path': 'app_user_routing_permissions_index',
'param_1': 'userId',
'attribute_1': 'id'
},
'item_remove': true,
} %}
{% endblock %}