{% extends 'base.html.twig' %}
{% block title %}Éditer une demande{% endblock %}
{% block body %}
Éditer une 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 %}
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 %}
{% endblock %}