{% extends 'base.html.twig' %} {% block title %}Demande de contact {{ parent() }} {% endblock %} {% block body %}

Demandes de contact

{% if contacts is not empty %}
{% for contact in contacts %}
{{ contact.subject }}
{{ contact.createdAt ? contact.createdAt|date('d/m/Y') : '' }}

Résolu : {{ contact.resolved ? 'Oui' : 'Non' }}

Modifier
Consulter la demande
{% endfor %}
{% else %} {% endif %}
{% endblock %}