mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-10 23:45:48 -06:00
20 lines
547 B
Twig
20 lines
547 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>
|
|
{{ Form.checkbox(name, value, options.checked, options) }}
|
|
</label>
|
|
</div>
|
|
{% include 'form/help' %}
|
|
{% include 'form/feedback' %}
|
|
</div>
|
|
</div>
|