2015-06-27 01:06:24 -05:00
|
|
|
<div class="{{ classes }}" id="{{ name }}_holder">
|
2016-09-04 09:21:51 -05:00
|
|
|
<label for="{{ options.id }}" class="
|
|
|
|
{% if options.small %}
|
|
|
|
col-sm-8
|
|
|
|
{% else %}
|
|
|
|
col-sm-4
|
|
|
|
{% endif %}
|
|
|
|
control-label">{{ label }}</label>
|
2015-06-27 01:06:24 -05:00
|
|
|
|
2016-09-04 09:21:51 -05:00
|
|
|
<div class="{% if options.small %}col-sm-4{% else %}col-sm-8{% endif %}">
|
2015-05-01 16:35:35 -05:00
|
|
|
<div class="checkbox">
|
|
|
|
<label>
|
|
|
|
{{ Form.checkbox(name, value, options.checked, options) }}
|
|
|
|
</label>
|
|
|
|
</div>
|
2016-11-06 01:11:43 -06:00
|
|
|
{% include 'form/help' %}
|
|
|
|
{% include 'form/feedback' %}
|
2015-05-01 16:35:35 -05:00
|
|
|
</div>
|
|
|
|
</div>
|