49 lines
842 B
Plaintext
49 lines
842 B
Plaintext
views:
|
|
- type: table
|
|
name: Overdue
|
|
filters:
|
|
and:
|
|
- note["Date Due"] <= now()
|
|
order:
|
|
- Type
|
|
- file.name
|
|
- Project
|
|
- Priority
|
|
- Date Due
|
|
sort:
|
|
- property: file.name
|
|
direction: ASC
|
|
- type: table
|
|
name: Due today
|
|
filters:
|
|
and:
|
|
- note["Date Due"] == now()
|
|
order:
|
|
- Type
|
|
- file.name
|
|
- Project
|
|
- Priority
|
|
- Date Due
|
|
- type: table
|
|
name: Due in 7 days
|
|
filters:
|
|
and:
|
|
- note["Date Due"] >= now() + "7d"
|
|
order:
|
|
- Type
|
|
- file.name
|
|
- Project
|
|
- Priority
|
|
- Date Due
|
|
- type: table
|
|
name: Due in 31 days
|
|
filters:
|
|
and:
|
|
- note["Date Due"] >= now() + "31d"
|
|
order:
|
|
- Type
|
|
- file.name
|
|
- Project
|
|
- Priority
|
|
- Date Due
|