mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 08:18:50 +00:00
Added Task Mgmt, and framework for Recipes.
This commit is contained in:
parent
3b9a54daf1
commit
947abfb76f
13 changed files with 430 additions and 1 deletions
38
client/AdminMgmt/Tasks/taskTbl.html
Normal file
38
client/AdminMgmt/Tasks/taskTbl.html
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<template name="taskTbl">
|
||||
<div class="row">
|
||||
<div class="col s12">
|
||||
<table class="highlight striped responsive-table">
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Task Name</th>
|
||||
<th>Assigned To</th>
|
||||
<th>Due</th>
|
||||
<th>Done On</th>
|
||||
<th>Complete</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{#each tasks}}
|
||||
<tr>
|
||||
<td>{{taskName}}</td>
|
||||
<td>{{assignedTo}}</td>
|
||||
<td>{{taskDate}}</td>
|
||||
<td>{{completeDate}}</td>
|
||||
<td>
|
||||
{{#if $eq isComplete true}}
|
||||
<i class="material-icons green">check</i>
|
||||
{{/if}}
|
||||
</td>
|
||||
<td>
|
||||
<i class="material-icons clickable deleteTask">delete</i>
|
||||
<i class="material-icons clickable markTaskComplete">check</i>
|
||||
</td>
|
||||
</tr>
|
||||
{{/each}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
{{> deleteConfirmationModal}}
|
||||
{{> snackbar}}
|
||||
</template>
|
||||
Loading…
Add table
Add a link
Reference in a new issue