mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-31 11:40:47 +00:00
30 lines
No EOL
891 B
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> |