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="locMgmtTbl">
|
|
<div class="row">
|
|
<div class="col s12">
|
|
<ul class="collection">
|
|
{{#each locs}}
|
|
<li class="collection-item">
|
|
{{locationName}}
|
|
<i class="material-icons clickable deleteLocation right tooltipped" data-position="top" data-tooltip="Delete Location">delete</i>
|
|
<i class="material-icons clickable editLocation right tooltipped" data-position="top" data-tooltip="Edit Location">edit</i>
|
|
</li>
|
|
{{/each}}
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</template> |