mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Lots of changes made (almost a refactor <--- four letter word to me... - Menu Items collection is now the "permanent" storage location for menu item for any day. So, if i set Green Chile Chicken Enchiladas, Beans, and Rice as an item for a day, it will be stored as a Menu Item for later use. - Linking menu items to items that can be added to a shopping list - This has been updated to be more reusable. So as you re-choose a menu item that's already got list items linked, it just shows up for you to use to build a shopping list as needed. - Deleting menu items from a menu - changed to delete them only from the menu, and not from the database. - Dashboard updated to pull today's menu item from the menu, and not the menu item list.
23 lines
1.1 KiB
HTML
23 lines
1.1 KiB
HTML
<template name="menuItemsForm">
|
|
<h5>{{menuName}}</h5>
|
|
<form class="menuItemFrm row" style="gap: 1em;" id="menuItemFrm">
|
|
<div class="col s12 m6 l9 input-field outlined">
|
|
<input type="text" class="autocomplete tooltipped" id="menuItemInp" autocomplete="off" data-position="top" data-tooltip="Start typing, and select previous menu items if desired." />
|
|
<label for="menuItemInp">Item</label>
|
|
</div>
|
|
<div class="col s12 m6 l3 input-field outlined">
|
|
<input type="text" class="datepicker" id="dateServed" />
|
|
<label for="dateserved">Date to Serve</label>
|
|
</div>
|
|
<div class="col s12">
|
|
<div class="row">
|
|
<div class="col s6 m6 l6">
|
|
<a class="waves-effect waves-light btn shiftOneDay blue white-text left">Shift All By 1 Day</a>
|
|
</div>
|
|
<div class="col s6 m6 l6">
|
|
<a class="waves-effect waves-light btn saveMenuItem green white-text right">Add</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</template>
|