mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Added Menu List and the Menu Table view.
This commit is contained in:
parent
25ce44d9cf
commit
3290b3086a
16 changed files with 401 additions and 0 deletions
28
client/MenuItems/menuItemsTbl.html
Normal file
28
client/MenuItems/menuItemsTbl.html
Normal file
|
|
@ -0,0 +1,28 @@
|
|||
<template name="menuItemsTbl">
|
||||
<div class="row">
|
||||
<div class="col s12">
|
||||
<table>
|
||||
{{#each thisMenuItems}}
|
||||
<tr class="clickable">
|
||||
<td>
|
||||
<span>
|
||||
{{#if $eq itemMade true}}
|
||||
<strike>{{itemName}}</strike>
|
||||
{{else}}
|
||||
{{itemName}}
|
||||
{{/if}}
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
{{serveDate}}
|
||||
</td>
|
||||
<td>
|
||||
<i class="material-icons clickable deleteMenuItem right">delete</i>
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{{> deleteConfirmationModal}}
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue