2017-07-19 23:55:50 +08:00

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}}