mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 00:08:49 +00:00
Many chcanges, but version 0.1.0 is ready to be cut.
This commit is contained in:
parent
42643a37f5
commit
6e37ae8c74
46 changed files with 1038 additions and 273 deletions
34
client/ListItems/listItemsForm.html
Normal file
34
client/ListItems/listItemsForm.html
Normal file
|
|
@ -0,0 +1,34 @@
|
|||
<template name="listItemsForm">
|
||||
<div class="row">
|
||||
<div class="col s6">
|
||||
<h4>{{selListName}}</h4>
|
||||
</div>
|
||||
<div class="col s6">
|
||||
<p>
|
||||
<label>
|
||||
<input type="checkbox" id="showReceivedItems" />
|
||||
<span>Show Recv'd</span>
|
||||
</label>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col s9 m10 l10">
|
||||
<input list="listItemsData" name="listItems" id="listItems">
|
||||
|
||||
<datalist id="listItemsData">
|
||||
{{#each itemProdName}}
|
||||
<option value="{{prodName}}">{{prodName}}</option>
|
||||
{{/each}}
|
||||
</datalist>
|
||||
</div>
|
||||
<div class="col s3 m2 l2">
|
||||
{{#if $eq editMode false}}
|
||||
<a class="waves-effect waves-light btn saveListItem green right">Add</a>
|
||||
{{else}}
|
||||
<a class="waves-effect waves-light btn renameListItem blue right">Rename</a>
|
||||
{{/if}}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue