osm-commerces/templates/public/edit/opening_hours.html.twig

24 lines
807 B
Twig
Raw Normal View History

2025-05-26 19:03:34 +02:00
<div id="opening_hours">
2025-06-06 23:28:35 +02:00
<h2>
<i class="bi bi-clock"></i>
{{ 'display.opening_hours'|trans }}</h2>
<p class="description">{{ 'display.opening_hours_description'|trans }}</p>
2025-05-26 19:03:34 +02:00
2025-06-06 23:28:35 +02:00
{% 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 }}">
{% else %}
<input type="text"
placeholder="Mo-Fr 10:00-12:00 "
class="form-control"
name="custom__opening_hours"
id="custom__opening_hours"
value="">
<br>
{% endif %}
<hr>
</div>