Initial commit
This commit is contained in:
14
client/res/templates/fields/checklist/edit.tpl
Normal file
14
client/res/templates/fields/checklist/edit.tpl
Normal file
@@ -0,0 +1,14 @@
|
||||
|
||||
{{#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}}
|
||||
Reference in New Issue
Block a user