mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +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
26
client/Lists/listsTbl.html
Normal file
26
client/Lists/listsTbl.html
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
<template name="listsTbl">
|
||||
<div class="row">
|
||||
<div class="col s12">
|
||||
<ul class="collection">
|
||||
{{#each mylists}}
|
||||
<li class="collection-item clickable" id="{{this._id}}">
|
||||
<span class="{{#if $eq listShared true}}green-text{{/if}}">{{listName}}</span>
|
||||
<i class="material-icons clickable markAsComplete right" id="check_{{this._id}}">check</i>
|
||||
</li>
|
||||
{{/each}}
|
||||
<li class="collection-item clickable addNew" id="addList"> + Add New List</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Modal for the Add List Option -->
|
||||
<div id="modalList" class="modal">
|
||||
<div class="modal-content">
|
||||
<h4>Add New List</h4>
|
||||
{{> listMgmtForm}}
|
||||
</div>
|
||||
<div class="modal-footer">
|
||||
<a href="#!" class="modal-close waves-effect waves-green btn-flat">Done</a>
|
||||
</div>
|
||||
</div>
|
||||
{{> snackbar}}
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue