32 lines
No EOL
1.8 KiB
Twig
32 lines
No EOL
1.8 KiB
Twig
<div id="clim" class="mb-4 row">
|
|
<h2 class="mb-3 title col-12 col-sm-6">
|
|
<label for="commerce_tag_value__clim">
|
|
<i class="bi bi-thermometer-half"></i>
|
|
|
|
{{ 'display.keys.clim'|trans }}</label>
|
|
</h2>
|
|
<div class="form-part mx-3 col-12 col-sm-6">
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="commerce_tag_value__air_conditioning" id="clim_yes"
|
|
value="yes"
|
|
{% if commerce_overpass.tags_converted is defined and commerce_overpass.tags_converted.air_conditioning is defined and
|
|
commerce_overpass.tags_converted.air_conditioning == 'yes' %}checked{% endif %}
|
|
>
|
|
<label class="form-check-label" for="clim_yes">Oui</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="commerce_tag_value__air_conditioning" id="clim_no"
|
|
value="no"
|
|
{% if commerce_overpass.tags_converted is defined and commerce_overpass.tags_converted.air_conditioning is defined and
|
|
commerce_overpass.tags_converted.air_conditioning == 'no' %}checked{% endif %}
|
|
>
|
|
<label class="form-check-label" for="clim_no">Non</label>
|
|
</div>
|
|
<div class="form-check">
|
|
<input class="form-check-input" type="radio" name="commerce_tag_value__air_conditioning" id="clim_unknown"
|
|
value=""
|
|
{% if commerce_overpass.tags_converted.air_conditioning is not defined or commerce_overpass.tags_converted.air_conditioning == '' %}checked{% endif %}>
|
|
<label class="form-check-label" for="clim_unknown">Je ne sais pas</label>
|
|
</div>
|
|
</div>
|
|
</div> |