suppr table ville
This commit is contained in:
@@ -97,10 +97,6 @@
|
||||
</div>
|
||||
|
||||
<div class="space-y-4">
|
||||
<div class="form-group">
|
||||
<label for="sortie_ville">Ville organisatrice</label>
|
||||
{{ form_widget(form.ville, { 'attr': { 'class': 'block w-full p-3 border border-gray-300 rounded-lg focus:ring-2 focus:ring-blue-500', 'id': 'ville-select' } }) }}
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label for="sortie_lieu">Lieu</label>
|
||||
@@ -123,6 +119,10 @@
|
||||
<label class="block text-sm font-medium text-gray-700">Code postal :</label>
|
||||
<span id="codePostal-value" class="block w-full p-3 border border-gray-300 rounded-lg bg-gray-100">Renseigner avec le lieu</span>
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700">Ville :</label>
|
||||
<span id="ville-value" class="block w-full p-3 border border-gray-300 rounded-lg bg-gray-100">Renseigner avec le lieu</span>
|
||||
</div>
|
||||
<div>
|
||||
<label class="block text-sm font-medium text-gray-700">Latitude :</label>
|
||||
<span id="latitude-value" class="block w-full p-3 border border-gray-300 rounded-lg bg-gray-100">Renseigner avec le lieu</span>
|
||||
@@ -131,6 +131,7 @@
|
||||
<label class="block text-sm font-medium text-gray-700">Longitude :</label>
|
||||
<span id="longitude-value" class="block w-full p-3 border border-gray-300 rounded-lg bg-gray-100">Renseigner avec le lieu</span>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -171,6 +172,6 @@
|
||||
<script src="https://unpkg.com/leaflet/dist/leaflet.js"></script>
|
||||
<script src="https://unpkg.com/leaflet-geosearch/dist/geosearch.umd.js"></script>
|
||||
{{ encore_entry_script_tags('add-lieu') }}
|
||||
{{ encore_entry_script_tags('lieu') }}
|
||||
{{ encore_entry_script_tags('show-lieu') }}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
|
||||
@@ -62,12 +62,6 @@
|
||||
</div>
|
||||
|
||||
<div class="grid grid-cols-1 lg:grid-cols-2 gap-8">
|
||||
<div>
|
||||
<label for="ville" class="block text-sm font-semibold text-gray-700 mb-2">
|
||||
🏙️ Ville
|
||||
</label>
|
||||
{{ form_row(form.ville, { 'attr': { 'class': 'w-full rounded-md border-gray-300 shadow focus:ring-blue-500 focus:border-blue-500' } }) }}
|
||||
</div>
|
||||
<div>
|
||||
<label for="lieu" class="block text-sm font-semibold text-gray-700 mb-2">
|
||||
📍 Lieu
|
||||
|
||||
@@ -93,8 +93,8 @@
|
||||
<ul class="mt-4 text-gray-700 space-y-2">
|
||||
<li><strong>🏢 Nom :</strong> {{ sortie.lieu.nom }}</li>
|
||||
<li><strong>📍 Rue :</strong> {{ sortie.lieu.rue }}</li>
|
||||
<li><strong>🏙️ Ville :</strong> {{ sortie.lieu.ville.nom }}</li>
|
||||
<li><strong>✉️ Code postal :</strong> {{ sortie.lieu.ville.codePostal }}</li>
|
||||
<li><strong>🏙️ Ville :</strong> {{ sortie.lieu.ville }}</li>
|
||||
<li><strong>✉️ Code postal :</strong> {{ sortie.lieu.ville }}</li>
|
||||
<li><strong>🌍 Latitude :</strong> {{ sortie.lieu.latitude }}</li>
|
||||
<li><strong>🌍 Longitude :</strong> {{ sortie.lieu.longitude }}</li>
|
||||
</ul>
|
||||
|
||||
Reference in New Issue
Block a user