précision champs importants et manquants dans edit form

This commit is contained in:
Tykayn 2025-07-13 18:01:50 +02:00 committed by tykayn
parent bf2c5bdf7d
commit 21d3a5dfc7
8 changed files with 304 additions and 48 deletions

View file

@ -4,12 +4,17 @@
{# {{ dump(commerce_overpass)}} #}
<div class="row mb-3">
<div class="col-12 col-md-2">
<label for="commerce_tag_value__contact:housenumber">{{'display.keys.contact:housenumber'|trans}}</label>
<input type="text" class="form-control text-end" name="commerce_tag_value__contact:housenumber" value="{% if commerce_overpass.tags_converted['contact:housenumber'] is defined %}{{ commerce_overpass.tags_converted['contact:housenumber'] }}{% endif %}">
<label for="commerce_tag_value__contact:housenumber">{{ 'display.keys.contact:housenumber'|trans }}</label>
<input type="text" class="form-control text-end"
name="commerce_tag_value__contact:housenumber"
data-important="true"
value="{% if commerce_overpass.tags_converted['contact:housenumber'] is defined %}{{ commerce_overpass.tags_converted['contact:housenumber'] }}{% endif %}">
</div>
<div class="col-12 col-md-10">
<label for="commerce_tag_value__contact:street">{{'display.keys.contact:street'|trans}}</label>
<input type="text" class="form-control" name="commerce_tag_value__contact:street" value="{% if commerce_overpass.tags_converted['contact:street'] is defined %}{{ commerce_overpass.tags_converted['contact:street'] }}{% endif %}">
<label for="commerce_tag_value__contact:street">{{ 'display.keys.contact:street'|trans }}</label>
<input type="text" class="form-control" name="commerce_tag_value__contact:street"
data-important="true"
value="{% if commerce_overpass.tags_converted['contact:street'] is defined %}{{ commerce_overpass.tags_converted['contact:street'] }}{% endif %}">
</div>
</div>
</div>

View file

@ -1,24 +1,26 @@
<div id="opening_hours">
<h2>
<i class="bi bi-clock"></i>
{{ 'display.opening_hours'|trans }}</h2>
<h2 class="mt-4">
<i class="bi bi-clock"></i>
{{ 'display.opening_hours'|trans }}</h2>
<p class="description">{{ 'display.opening_hours_description'|trans }}</p>
{% if commerce_overpass.tags_converted.opening_hours is defined and commerce_overpass.tags_converted.opening_hours != '' %}
<input type="text"
placeholder="Remplissez"
class="form-control"
name="custom__opening_hours"
id="custom__opening_hours"
value="{{ commerce_overpass.tags_converted.opening_hours }}">
{% if commerce_overpass.tags_converted.opening_hours is defined and commerce_overpass.tags_converted.opening_hours != '' %}
<input type="text"
placeholder="Remplissez"
class="form-control"
name="custom__opening_hours"
id="custom__opening_hours"
data-important="true"
value="{{ commerce_overpass.tags_converted.opening_hours }}">
{% else %}
<input type="text"
placeholder="Mo-Fr 10:00-12:00 "
class="form-control"
name="custom__opening_hours"
id="custom__opening_hours"
value="">
<input type="text"
placeholder="Mo-Fr 10:00-12:00 "
class="form-control"
name="custom__opening_hours"
id="custom__opening_hours"
data-important="true"
value="">
<br>
{% endif %}
<hr>
<hr>
</div>

View file

@ -27,7 +27,7 @@
{% endif %}
</div>
<div class="col-md-5">
{# {% if k not in excluded_tags_to_render %} #}
{% if k not in excluded_tags_to_render %}
<div class="input-group">
<input type="text"
class="form-control"
@ -36,7 +36,7 @@
value="{{ v }}"
{% if hide_filled_inputs is defined and v %}style="display: none;"{% endif %}>
</div>
{# {% endif %} #}
{% endif %}
</div>
</div>
{% endfor %}