<div class="form-group">
    <fieldset id="">
        <legend></legend>
        <div>
        </div>
    </fieldset>
</div>
<div class="form-group{% if required %} field-required{% endif %}{% if error %} has-error{% endif %}">
	<fieldset id="{{ id }}">
		<legend>{{ label }}{% if required %}<span class="required">*</span>{% endif %}</legend>
		{% if helpText %}<p class="help-block">{{ helpText }}</p>{% endif %}
		<div>
			{% for choice in choices %}
				<div class="{{ type }} {{ type }}-pretty{% if inline %} {{ type }}-inline{% endif %}{% if choice.disabled %} {{ type }}-pretty-disabled{% endif %}">
					<label for="{{ choice.id }}">
						<input id="{{ choice.id }}" type="{{ type }}" name="{{ name }}" value="{{ choice.value }}"{% if choice.ariaLabel %} aria-label="{{ choice.ariaLabel }}"{% endif %}{% if choice.checked %} checked{% endif %}{% if required %} required{% endif %}{% if choice.disabled %} disabled{% endif %}> 
						<span></span>
						{{ choice.label }}{% if choice.count %} ({{ choice.count|number_format }}){% endif %}
					</label>
				</div>
			{% endfor %}
		</div>
	</fieldset>
	{% if error %}<p class="help-block">{{ error }}</p>{% endif %}
</div>
/* No context defined for this component. */

There are no notes for this item.