get_my/client/AdminMgmt/CategoryMgMt/catMgmtTbl.html

21 lines
629 B
HTML
Raw Normal View History

<template name="catMgmtTbl">
<table class="highlight striped responsive-table">
<thead>
<tr>
<th>Name</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
{{#each cats}}
<tr>
<td>{{categoryName}}</td>
<td>
<i class="material-icons clickable deleteCategory">delete</i>
<i class="material-icons clickable editCategory">edit</i>
</td>
</tr>
{{/each}}
</tbody>
</table>
</template>