{% extends 'base.html.twig' %}
{% block title %}Liste permissions {% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% include 'shared/layout/_content-header.html.twig' with {
'item_lien': {
0: {
'label': user.civility ~ '. ' ~ user.firstName ~ ' ' ~ user.lastName,
'path': path('app_user_index')
},
1: {
'label': 'Droit d\'autorisation'
}
}
} %}
{% include 'shared/componnents/_tables/_permissions.html.twig' with {
'routings': routings,
'user': user,
'path_list': path('app_user_index'),
} %}
{% endblock %}