get_my/client/MenuItems/menuItemsTbl.html

42 lines
1.7 KiB
HTML
Raw Permalink Normal View History

<template name="menuItemsTbl">
<div class="row">
<div class="col s12">
<table>
2024-07-28 19:42:23 -05:00
<thead>
<tr>
<th>Menu Item</th>
<th>Date to Serve</th>
2024-07-29 16:58:08 -05:00
<th>Has Product Links</th>
2024-07-28 19:42:23 -05:00
<th>Actions</th>
</tr>
</thead>
{{#each thisMenuItems}}
{{#each menuItems}}
<tr>
<td>
<span>
{{menuItemName}}
</span>
</td>
<td>
{{serveDate}}
</td>
<td>
{{#if $eq isLinked true}}<a class="waves-effect waves-light blue darken-3 white-text btn addProdsToList modal-trigger" href="#addProdToList">+ Shopping List</a>{{/if}}
</td>
<td>
2024-08-18 08:40:09 -05:00
<i class="material-icons modal-trigger deleteMenuItem clickable" href="#modalDelete">delete</i>
<i class="material-icons modal-trigger linkToProducts clickable" href="#modalLinkProducts">link</i>
<i class="material-icons modal-trigger clickable">arrow_forward</i>
</td>
</tr>
{{/each}}
{{/each}}
</table>
</div>
</div>
{{> deleteConfirmationModal}}
2024-07-28 19:42:23 -05:00
{{> modalLinkProducts}}
2024-07-29 16:58:08 -05:00
{{> addProdToListModal}}
</template>