mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
18 lines
612 B
HTML
18 lines
612 B
HTML
|
|
<template name="mainMenuTbl">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col s12">
|
||
|
|
<ul class="collection">
|
||
|
|
{{#each myMenus}}
|
||
|
|
<li class="collection-item clickable" id="{{this._id}}">
|
||
|
|
{{menuName}}
|
||
|
|
<i class="material-icons clickable markComplete right" id="check_{{this._id}}">check</i>
|
||
|
|
</li>
|
||
|
|
{{/each}}
|
||
|
|
<li class="collection-item clickable addNew" id="addMenu"> + Add New Menu</li>
|
||
|
|
</ul>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
{{> addMenuModal}}
|
||
|
|
|
||
|
|
{{> snackbar}}
|
||
|
|
</template>
|