mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-20 11:48:27 -06:00
19 lines
552 B
Twig
19 lines
552 B
Twig
<div class="{{ classes }}" id="{{ name }}_holder">
|
|
<label for="{{ options.id }}" class="
|
|
{% if options.small %}
|
|
col-sm-8
|
|
{% else %}
|
|
col-sm-4
|
|
{% endif %}
|
|
control-label">{{ label }}</label>
|
|
<div class="{% if options.small %}col-sm-4{% else %}col-sm-8{% endif %}">
|
|
<div class="checkbox">
|
|
<label>
|
|
{{ Html.checkbox(name, options.checked, value).id(options.id) }}
|
|
</label>
|
|
</div>
|
|
{% include 'form.help' %}
|
|
{% include 'form.feedback' %}
|
|
</div>
|
|
</div>
|