récupérer les objets avec email dans une zone par code postal

This commit is contained in:
Tykayn 2025-05-26 12:57:10 +02:00 committed by tykayn
parent f5ab0c8205
commit cb240dd169
8 changed files with 348 additions and 73 deletions

View file

@ -48,7 +48,9 @@
<th>Email</th>
<th>Date de modification</th>
<th>Date de dernier contact</th>
<th>Date de dernière modification</th>
<th>Date de dernière modification</th>
<th>Code postal</th>
</tr>
@ -61,7 +63,17 @@
<td>{{ place.modifiedDate | date('Y-m-d H:i:s') }}</td>
<td>{{ place.lastContactAttemptDate | date('Y-m-d H:i:s') }}</td>
<td>{{ place.modifiedDate | date('Y-m-d H:i:s') }}</td>
<td>{{ place.zipCode }}</td>
<td>
<a href="https://www.openstreetmap.org/{{place.osmKind}}/{{ place.osmId }}" target="_blank">Voir dans OSM</a>
{% if place.name %}
<a href="{{ path('app_public_edit', {'zipcode': place.zipCode, 'name': place.name, 'uuid': place.uuidForUrl}) }}">Modifier</a>
{% else %}
<a href="{{ path('app_public_edit', {'zipcode': place.zipCode, 'name': '?', 'uuid': place.uuidForUrl}) }}">Modifier</a>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>