mirror of
				https://github.com/firefly-iii/firefly-iii.git
				synced 2025-10-31 18:54:58 +00:00 
			
		
		
		
	
		
			
	
	
		
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
		
		
			
		
	
	
			17 lines
		
	
	
		
			501 B
		
	
	
	
		
			Twig
		
	
	
	
	
	
|   | <div class="{{ classes }}">
 | ||
|  |     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label>
 | ||
|  |     <div class="col-sm-8">
 | ||
|  |         {% for value,description in list %}
 | ||
|  |         <div class="radio">
 | ||
|  |             <label>
 | ||
|  |                 {{ Form.radio(name, value, (selected == value), options)  }}
 | ||
|  |                 {{ description }}
 | ||
|  |             </label>
 | ||
|  |         </div>
 | ||
|  |         {% endfor %}
 | ||
|  |         {% include 'form/help.twig' %}
 | ||
|  |         {% include 'form/feedback.twig' %}
 | ||
|  | 
 | ||
|  |     </div>
 | ||
|  | </div>
 |