50 lines
768 B
Markdown
50 lines
768 B
Markdown
---
|
|
date: 2024-10-08
|
|
tags:
|
|
---
|
|
# Yesterday | Tomorrow
|
|
<< [[1 Daily Notes/2024/10 October/2024-10-07]] | [[1 Daily Notes/2024/10 October/2024-10-09 ]] >>
|
|
# This Week's Weekly Note
|
|
[[ Weekly Note 2024-10-02]]
|
|
# Tasks for today
|
|
## Due
|
|
```dataview
|
|
task
|
|
where
|
|
due <= date(this.date)
|
|
and due
|
|
and !completed
|
|
and status != "-"
|
|
sort due asc
|
|
group by file.folder
|
|
```
|
|
## Scheduled
|
|
```dataview
|
|
task
|
|
where
|
|
scheduled
|
|
and scheduled <= date(this.date)
|
|
and !completed
|
|
and status != "-"
|
|
sort due asc
|
|
group by file.folder
|
|
```
|
|
## Tasks in Progress
|
|
```dataview
|
|
task
|
|
where
|
|
status != "-"
|
|
and status = "/"
|
|
sort due asc
|
|
group by file.folder
|
|
```
|
|
## Completed
|
|
```dataview
|
|
task
|
|
where
|
|
completed
|
|
and completion = date(this.date)
|
|
sort due asc
|
|
group by file.folder
|
|
```
|
|
# Calendar Tasks |