mirror of
https://gitlab.com/bmcgonag/get_my.git
synced 2026-03-27 16:28:50 +00:00
38 lines
No EOL
1.4 KiB
HTML
38 lines
No EOL
1.4 KiB
HTML
<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> |