You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
503 B
HTML
11 lines
503 B
HTML
<!-- Multiple Checkboxes (inline) -->
|
|
<div class="form-group">
|
|
<label class="col-md-6 control-label" for="{{ name }}">{{ label }}</label>
|
|
<div class="col-md-8">{{ #checkboxes }}
|
|
<label class="checkbox-inline" for="{{ name }}-{{ index }}">
|
|
<input type="checkbox" name="{{ name }}" id="{{ name }}-{{ getIndex }}" value="{{ #checkboxesValues }}{{ #getNthValue }}{{.}}{{/getNthValue}}{{ /checkboxesValues }}" >
|
|
{{ . }}
|
|
</label>{{ /checkboxes }}
|
|
{{ resetIndex }}
|
|
</div>
|
|
</div> |