osm-commerces/templates/public/edit/opening_hours.html.twig
2025-06-06 23:28:35 +02:00

24 lines
No EOL
807 B
Twig

<div id="opening_hours">
<h2>
<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 }}">
{% 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>