{% extends 'base.html.twig' %}
{% block title %}Liste contacts{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block javascripts %}
{{ parent() }}
{% endblock %}
{% block content %}
{% include 'shared/layout/_content-header.html.twig' %}
{% include 'shared/componnents/_tables/_index.html.twig' with {
'datas': contacts,
'columns': ['Nom et Prénom', 'Email', 'Téléphone', 'Cause', 'Demande'],
'entity_name': 'Contact',
'item_remove': true
} %}
{% endblock %}