super-productivity/app/scripts/work-view/work-view-d.html
2017-01-12 23:49:57 +01:00

31 lines
1,004 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<div class="work-view-current-task">
<p>Working today: <strong>{{ vm.totalTimeWorkedToday|duration }}</strong>
Estimate remaining: ~<strong>{{ vm.totalEstimationRemaining|duration }}</strong></p>
</div>
<div class="work-view-tasks work-view-tasks--undone">
<task-list tasks="vm.tasksUndone"
current-task="r.currentTask"
on-item-moved="vm.onItemMovedUndone($event)"
is-tasks-for-today="true"
allow-task-selection="true"></task-list>
</div>
<h2 class="md-title">Done Tasks</h2>
<div class="work-view-tasks work-view-tasks--done">
<task-list tasks="vm.tasksDone"
on-item-moved="vm.onItemMovedDone($event)"
is-tasks-for-today="true"
current-task="r.currentTask"></task-list>
</div>
<md-button ng-click="vm.openAddTask()"
class="md-primary md-raised">Add new Task
</md-button>
<md-button ui-sref="daily-summary"
class="md-primary md-raised">Finish your work day
</md-button>