mirror of
https://github.com/johannesjo/super-productivity.git
synced 2026-07-29 18:50:07 +00:00
70 lines
2.1 KiB
HTML
70 lines
2.1 KiB
HTML
<header class="work-view-header">
|
|
<div class="status-bar">
|
|
<div class="item"><span class="label">Working today:</span>
|
|
<span class="no-wrap">
|
|
<strong ng-bind="vm.totalTimeWorkedToday|duration"></strong>
|
|
<ng-md-icon icon="timer"></ng-md-icon>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="item">
|
|
<span class="label">Estimate remaining:</span>
|
|
<span class="no-wrap">
|
|
~<strong ng-bind="vm.totalEstimationRemaining|duration"></strong>
|
|
<ng-md-icon icon="timer"></ng-md-icon>
|
|
</span>
|
|
</div>
|
|
|
|
<div class="item"
|
|
ng-if="vm.config.isShowTimeWorkedWithoutBreak">
|
|
<span class="label">Without break: </span>
|
|
<span class="no-wrap">
|
|
<strong ng-bind="vm.session.timeWorkedWithoutBreak|duration"></strong><ng-md-icon icon="timer"></ng-md-icon>
|
|
</span>
|
|
</div>
|
|
|
|
<md-button ng-click="vm.collapseAllNotesAndSubTasks()"
|
|
class="md-icon-button md-primary">
|
|
<ng-md-icon icon="vertical_align_center"
|
|
aria-label="collapse sub tasks and notes"></ng-md-icon>
|
|
</md-button>
|
|
</div>
|
|
</header>
|
|
|
|
<section class="work-view-tasks work-view-tasks--undone">
|
|
<p ng-if="!vm.tasksUndone.length">You currently have no undone tasks.</p>
|
|
|
|
<task-list tasks="vm.tasksUndone"
|
|
current-task-id="r.currentTask.id"
|
|
on-task-done-changed="vm.onTaskDoneChangedUndoneList(task)"
|
|
allow-task-selection="true"></task-list>
|
|
</section>
|
|
|
|
<md-button ng-click="vm.openAddTask()"
|
|
class="md-primary md-raised">
|
|
<ng-md-icon icon="add"></ng-md-icon>
|
|
Add new Task
|
|
</md-button>
|
|
|
|
|
|
<md-button ui-sref="daily-summary"
|
|
class="md-primary md-raised">
|
|
<ng-md-icon icon="done_all"></ng-md-icon>
|
|
Finish your work day
|
|
</md-button>
|
|
|
|
|
|
<h2 class="md-title">
|
|
<ng-md-icon icon="playlist_add_check"></ng-md-icon>
|
|
Done Tasks
|
|
</h2>
|
|
|
|
<section class="work-view-tasks work-view-tasks--done">
|
|
<p ng-if="!vm.tasksDone.length">You currently have no done tasks.</p>
|
|
|
|
<task-list tasks="vm.tasksDone"
|
|
on-task-done-changed="vm.onTaskDoneChangedDoneList(task)"
|
|
current-task-id="r.currentTask.id"></task-list>
|
|
</section>
|
|
|
|
|