vault backup: 2026-05-13 18:34:07

This commit is contained in:
Thomas Peetz
2026-05-13 18:34:06 +02:00
parent 6ed04c0c14
commit a3213538bb
5 changed files with 99 additions and 4 deletions
@@ -24,7 +24,7 @@ dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
## Aufgaben
```dataviewjs
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task')).where(p => dv.page(p.path).file.tasks.length == dv.page(p.path).file.tasks.where(t => t.fullyCompleted === true).length);
dv.table(["Project", "Status", "Completed", "Tasks"], pages.map(p => {
const page = dv.page(p.path);