super-productivity/app-src/scripts/done-tasks-backlog/done-tasks-backlog-d.html
2017-10-29 18:42:59 +01:00

36 lines
No EOL
1.2 KiB
HTML

<h2 class="md-title">Done Tasks Backlog</h2>
<p> This is just here to admire yourself.</p>
<p>You spent <strong ng-bind="vm.totalTimeSpent|duration"></strong> on all those tasks.</p>
<table class="task-summary-table"
md-whiteframe="2">
<tr>
<th>Title</th>
<th>Sub-Tasks</th>
<th>Time spent</th>
<th>Time esti.</th>
<th></th>
</tr>
<tr ng-repeat="task in vm.doneBacklogTasks"
ng-class="{'is-done': task.isDone}">
<td ng-bind="task.title"></td>
<td>
<span ng-repeat="task in task.subTasks"><span ng-bind="task.title"></span>: <span ng-bind="task.timeSpent|duration"></span><br></span>
</td>
<td ng-bind="task.timeSpent |duration"></td>
<td ng-bind="task.timeEstimate |duration"></td>
<td>
<md-button class="md-icon-button"
aria-label="Copy back to todays tasks"
title="Copy back to todays tasks"
ng-click="vm.restoreTask(task)">
<ng-md-icon icon="settings_backup_restore"></ng-md-icon>
</md-button>
<ng-md-icon icon="check"
ng-show="task.isDone"
style="fill:green;"
aria-label="checkmark"></ng-md-icon>
</td>
</tr>
</table>