22 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
		
		
			
		
	
	
			22 lines
		
	
	
	
		
			1.3 KiB
		
	
	
	
		
			Twig
		
	
	
	
	
	
|   | <div id="clim" class="mb-6">
 | ||
|  |   <h2 class="mb-3 title">
 | ||
|  |       <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">
 | ||
|  |       <div class="form-check">
 | ||
|  |         <input class="form-check-input" type="radio" name="commerce_tag_value__air_conditioning" id="clim_yes" value="yes" {% if commerce.tags_converted.air_conditioning is defined and commerce.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.tags_converted.air_conditioning is defined and commerce.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.tags_converted.air_conditioning is not defined or commerce.tags_converted.air_conditioning == '' %}checked{% endif %}>
 | ||
|  |         <label class="form-check-label" for="clim_unknown">Je ne sais pas</label>
 | ||
|  |       </div>
 | ||
|  |     </div>
 | ||
|  | </div>
 |