mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-12-12 01:42:32 +00:00
Rename template file.
This commit is contained in:
22
resources/views/form/assetAccountCheckList.twig
Normal file
22
resources/views/form/assetAccountCheckList.twig
Normal file
@@ -0,0 +1,22 @@
|
||||
<div class="{{ classes }}" id="{{ name }}_holder">
|
||||
<label for="{{ options.id }}" class="col-sm-4 control-label">{{ label }}</label>
|
||||
|
||||
<div class="col-sm-8">
|
||||
{% for value,description in list %}
|
||||
{% set options = options|merge({'id': 'ffInput_'~name~'_'~value}) %}
|
||||
<div class="checkbox">
|
||||
<label>
|
||||
{% if value in selected %}
|
||||
{{ Form.checkbox(name~'[]', value, true, options) }}
|
||||
{% else %}
|
||||
{{ Form.checkbox(name~'[]', value, false, options) }}
|
||||
{% endif %}
|
||||
{{ description }}
|
||||
</label>
|
||||
</div>
|
||||
{% endfor %}
|
||||
{% include 'form/help' %}
|
||||
{% include 'form/feedback' %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
Reference in New Issue
Block a user