| 
									
										
										
										
											2015-07-06 20:21:55 +02:00
										 |  |  | <div class="{{ classes }}" id="{{ name }}_holder">
 | 
					
						
							|  |  |  |     <label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label>
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     <div class="col-sm-8">
 | 
					
						
							|  |  |  |         {% for value,description in list %}
 | 
					
						
							| 
									
										
										
										
											2016-02-06 15:00:57 +01:00
										 |  |  |             {% set options = options|merge({'id': 'ffInput_'~name~'_'~value}) %}
 | 
					
						
							|  |  |  |         <div class="checkbox">
 | 
					
						
							| 
									
										
										
										
											2015-07-06 20:21:55 +02:00
										 |  |  |                 <label>
 | 
					
						
							| 
									
										
										
										
											2016-02-06 15:00:57 +01:00
										 |  |  |                     {% if value in selected %}
 | 
					
						
							|  |  |  |                         {{ Form.checkbox(name~'[]', value, true, options) }}
 | 
					
						
							|  |  |  |                     {% else %}
 | 
					
						
							|  |  |  |                         {{ Form.checkbox(name~'[]', value, false, options) }}
 | 
					
						
							|  |  |  |                     {% endif %}
 | 
					
						
							| 
									
										
										
										
											2015-07-06 20:21:55 +02:00
										 |  |  |                     {{ description }}
 | 
					
						
							|  |  |  |                 </label>
 | 
					
						
							|  |  |  |             </div>
 | 
					
						
							|  |  |  |         {% endfor %}
 | 
					
						
							|  |  |  |         {% include 'form/help.twig' %}
 | 
					
						
							|  |  |  |         {% include 'form/feedback.twig' %}
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     </div>
 | 
					
						
							|  |  |  | </div>
 |