mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
15 lines
No EOL
648 B
HTML
15 lines
No EOL
648 B
HTML
<template name="storeMgmtTbl">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<ul class="collection">
|
|
{{#each mgmtStoreInfo}}
|
|
<li class="collection-item">
|
|
{{storeName}}
|
|
<i class="material-icons clickable deleteStore right tooltipped" data-position="top" data-tooltip="Delete Store">delete</i>
|
|
<i class="material-icons clickable editStore right tooltipped" data-position="top" data-tooltip="Edit Store Name">edit</i>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template> |