mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
15 lines
No EOL
647 B
HTML
15 lines
No EOL
647 B
HTML
<template name="catMgmtTbl">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<ul class="collection">
|
|
{{#each cats}}
|
|
<li class="collection-item">
|
|
{{categoryName}}
|
|
<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>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template> |