mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
21 lines
629 B
HTML
21 lines
629 B
HTML
|
|
<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>
|