This repository has been archived on 2026-07-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
espocrm-base/client/res/templates/fields/checklist/edit.tpl
T
Yuri Kuznetsov 51b621ecd1 checkbox styled
2022-10-25 16:51:19 +03:00

15 lines
377 B
Smarty

{{#each optionDataList}}
<div class="checklist-item-container">
<input
type="checkbox"
data-name="{{dataName}}"
id="{{id}}"
class="form-checkbox"
{{#if isChecked}}checked{{/if}}
>
<label for="{{id}}" class="checklist-label">{{label}}</label>
</div>
{{/each}}
{{#unless optionDataList.length}}{{translate 'None'}}{{/unless}}