mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +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.
29 lines
1.2 KiB
HTML
29 lines
1.2 KiB
HTML
<template name="modalLinkProducts">
|
|
<div id="modalLinkProducts" class="modal tall-modal">
|
|
<div class="modal-content tall-content">
|
|
<p class="flow-text">Choose Product Items below that are used to make this menu item.</p>
|
|
<div class="col s12 input-field outlined" id="prouctsForMenudiv">
|
|
<select name="" id="prodForMenu" class="prodForMenu" multiple>
|
|
<option value="" disabled>Choose...</option>
|
|
{{#each products}}
|
|
<option value="{{_id}}|{{prodName}}">{{prodName}}</option>
|
|
{{/each}}
|
|
</select>
|
|
</div>
|
|
</div>
|
|
<br>
|
|
<hr>
|
|
|
|
<div class="modal-footer">
|
|
<div class="row">
|
|
<div class="col s6">
|
|
<a id="cancelLInk" class="btn waves-effect wave-light orange white-text left modal-close">Cancel</a>
|
|
</div>
|
|
<div class="col s6">
|
|
<a id="saveLink" class="btn waves-effect waves-light green white-text right modal-close">Save</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{{> snackbar}}
|
|
</template>
|