@if (improvementService.hasLastTrackedImprovements$ | async) {
@if (!isPlanningMode() && !(workContextService.isHasTasksToWorkOn$ | async)) {
{{ T.WW.NO_PLANNED_TASKS | translate }}
@if (workContextService.isToday$ | async) {
}
@if (
!(workContextService.isToday$ | async) &&
workContextService.activeWorkContextType === 'PROJECT'
) {
}
@if (
!(workContextService.isToday$ | async) &&
workContextService.activeWorkContextType === 'TAG'
) {
}
}
@if (isPlanningMode()) {
}
@if (!isPlanningMode() || doneTasks()?.length) {
{{ T.WW.COMPLETED_TASKS | translate }}
@if (workContextService.isToday$ | async) {
}
@if (
!(workContextService.isToday$ | async) &&
workContextService.activeWorkContextType === 'PROJECT'
) {
}
@if (
!(workContextService.isToday$ | async) &&
workContextService.activeWorkContextType === 'TAG'
) {
}
}