32 lines
603 B
Handlebars
32 lines
603 B
Handlebars
{{#modal-list-select title='Customer Status'}}
|
|
<thead class="thin-border-bottom">
|
|
<tr>
|
|
<th>
|
|
</th>
|
|
<th>
|
|
Name
|
|
</th>
|
|
<th>
|
|
<i class="ace-icon fa fa-sticky-note-o bigger-110 hidden-480"></i>
|
|
Remark
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{#each model.data as |it|}}
|
|
<tr>
|
|
<td class="center">
|
|
{{list-select-checkbox model=it}}
|
|
</td>
|
|
<td>
|
|
{{it.name}}
|
|
</td>
|
|
<td>
|
|
{{it.note}}
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
{{/modal-list-select}}
|