2022-08-15 18:07:39 -05:00
|
|
|
<template name="catMgmtTbl">
|
2022-08-16 16:46:14 -05:00
|
|
|
<div class="row">
|
|
|
|
|
<div class="col s12">
|
|
|
|
|
<ul class="collection">
|
|
|
|
|
{{#each cats}}
|
|
|
|
|
<li class="collection-item">
|
|
|
|
|
{{categoryName}}
|
2022-08-23 13:41:21 -05:00
|
|
|
<i class="material-icons clickable deleteCategory right tooltipped" data-position="top" data-tooltip="Delete Category">delete</i>
|
|
|
|
|
<i class="material-icons clickable editCategory right tooltipped" data-position="top" data-tooltip="Edit Category">edit</i>
|
2022-08-16 16:46:14 -05:00
|
|
|
</li>
|
|
|
|
|
{{/each}}
|
|
|
|
|
</ul>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2022-08-26 11:18:18 -05:00
|
|
|
{{> deleteConfirmationModal}}
|
2022-08-15 18:07:39 -05:00
|
|
|
</template>
|