{% extends 'admin/adminBase.html.twig' %} {% block title %}ADMINISTRATION - Liste des contacts du site{% endblock %} {% block titre_page %}Liste des contacts du site{% endblock %} {% block sous_titre_page %}Retrouvez ici la liste des contacts du site{% endblock %} {% block titre_icone %} {{ getMenuIcon('ADMIN_CONTACT') }}{% endblock %} {% block body %} {% for contact in contacts %} {% else %} {% endfor %}
Id Date Nom Prenom Mail Telephone Message Contact commercial autorisé ? Actions
{{ contact.id }} {{ contact.dateCreation ? contact.dateCreation|date('d/m/Y H:i:s') : '' }} {{ contact.nom }} {{ contact.prenom }} {{ contact.mail }} {{ contact.telephone }} {{ contact.message }} {{ contact.isCommercialContact ? 'Oui' : 'Non' }} {% if autorise('CONTACT_SEND_MAIL') %} Répondre à la demande de contact {% endif %} {% if autorise('CONTACT_DELETE') %} {{ include('admin/contact/_delete_form.html.twig') }} {% endif %}
Aucun enregistrement trouvé
{% endblock %}