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
21
client/ListItems/listItemsTbl.html
Normal file
21
client/ListItems/listItemsTbl.html
Normal file
|
|
@ -0,0 +1,21 @@
|
|||
<template name="listItemsTbl">
|
||||
<div class="row">
|
||||
<div class="col s12">
|
||||
<ul class="collection">
|
||||
{{#each thisListItems}}
|
||||
<li class="collection-item">
|
||||
<span>
|
||||
{{#if $eq itemOrdered true}}
|
||||
<strike>{{itemName}}</strike>
|
||||
{{else}}
|
||||
{{itemName}}
|
||||
{{/if}}
|
||||
</span>
|
||||
<i class="material-icons clickable deleteListItem right">delete</i>
|
||||
<i class="material-icons clickable markListItemReceived right">check</i>
|
||||
</li>
|
||||
{{/each}}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue