Projects Added

This commit is contained in:
2026-07-23 18:52:19 -04:00
parent 641bbb348f
commit ff127b43e5
29 changed files with 953 additions and 35 deletions
@@ -0,0 +1,34 @@
views:
- 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