{% extends 'base.html.twig' %} {% block title %}Éditer une demande{% endblock %} {% block body %}

Éditer une demande

Retour à la liste

Informations de la demande

ID {{ demande.id }}
Nom du commerce {{ demande.query }}
Email {{ demande.email }}
Date de création {{ demande.createdAt ? demande.createdAt|date('Y-m-d H:i:s') : '' }}
Statut {{ demande.status }}
Place UUID {{ demande.placeUuid }}
Dernière tentative de contact {{ demande.lastContactAttempt ? demande.lastContactAttempt|date('Y-m-d H:i:s') : '' }}
{% if demande.place %}

Place associée

ID {{ demande.place.id }}
Nom {{ demande.place.name }}
Email {{ demande.place.email }}
UUID {{ demande.place.uuidForUrl }}
OSM ID {{ demande.place.osmKind }}/{{ demande.place.osmId }}
{% endif %}

Lier à une Place

Entrez l'UUID d'une Place existante pour la lier à cette demande.
{% endblock %}