vault backup: 2026-04-29 18:25:51

This commit is contained in:
Thomas Peetz
2026-04-29 18:25:51 +02:00
parent f935b2b85d
commit aea41a2576
5 changed files with 269 additions and 20 deletions
+18 -1
View File
@@ -13,7 +13,7 @@ LIMIT 20
## Links
- https://cimt-objects.zammad.com
## Aufgaben
## Offene Aufgaben
```dataviewjs
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);
@@ -29,6 +29,23 @@ 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);
const tasks = page.file.tasks;
return [
page.file.link,
page.status,
tasks.where(t => t.fullyCompleted === true).length,
tasks.length
]
}));
```
## Termine
>[!info]- Daily