2022-08-26 17:10:05 -05:00
|
|
|
<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>
|
2022-08-26 17:10:05 -05:00
|
|
|
{{#each thisMenuItems}}
|
2024-08-14 11:38:13 -05:00
|
|
|
{{#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>
|
2024-08-14 11:38:13 -05:00
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{{/each}}
|
2022-08-26 17:10:05 -05:00
|
|
|
{{/each}}
|
|
|
|
|
</table>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
{{> deleteConfirmationModal}}
|
2024-07-28 19:42:23 -05:00
|
|
|
{{> modalLinkProducts}}
|
2024-07-29 16:58:08 -05:00
|
|
|
{{> addProdToListModal}}
|
2024-08-14 11:38:13 -05:00
|
|
|
</template>
|