super-productivity/app-src/scripts/done-tasks-backlog/done-tasks-backlog-d.html

30 lines
No EOL
891 B
HTML

<h2 class="md-title">Done Tasks Backlog</h2>
<p> This is just here to admire yourself.</p>
<p>You spent <strong>{{ 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 r.doneBacklogTasks"
ng-class="{'is-done': task.isDone}">
<td>{{ task.title }}</td>
<td><span ng-repeat="task in task.subTasks">{{ task.title }}: {{ task.timeSpent|duration }}<br></span></td>
<td>
{{ task.timeSpent |duration }}
</td>
<td>{{ task.timeEstimate |duration }}</td>
<td>
<ng-md-icon icon="check"
ng-show="task.isDone"
style="fill:green;"
aria-label="checkmark"></ng-md-icon>
</td>
</tr>
</table>