mirror of
https://forge.chapril.org/tykayn/osm-commerces
synced 2025-06-20 01:44:42 +02:00
24 lines
No EOL
807 B
Twig
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> |