{% extends 'base_admin.html.twig' %} {% block title %}Détail de la réponse{% endblock %} {% block body %}

Réponse du {{ response.submittedAt|date('d/m/Y H:i') }}

{% for answer in answers %}

{{ answer.customField.label }}

{% if answer.customField.type == 'file' and answer.filePath %} {{ answer.filePath }} {% else %}
{{ answer.value ?? '—' }}
{% endif %}
{% endfor %}
← Retour
{% endblock %}