{% extends 'base.html.twig' %} {% block title %}Demandes de contact ({{ total }}) — Admin Groupe Horao{% endblock %} {% block meta %} {% endblock %} {% block body %}
Administration

Demandes de contact {{ total }}

{% if contacts is empty %}

Aucune demande pour le moment.

{% else %}
{% for c in contacts %} {% endfor %}
# Date Motif Nom Société E-mail Message
{{ c.id }} {{ c.createdAt|date('d/m/Y H:i') }} {{ c.motif }} {{ c.nom }} {{ c.societe ?? '—' }} {{ c.email }} {{ c.message }}
{% if pages > 1 %} {% endif %} {% endif %}
{% endblock %}