vault backup: 2026-03-07 12:19:22

This commit is contained in:
2026-03-07 12:19:22 +01:00
parent 747795e370
commit b729349eaa
203 changed files with 641 additions and 2349 deletions
@@ -1,5 +1,4 @@
---
type: Wohnung
tags:
- process/project
subtitle: Oberlicht abdecken
@@ -9,7 +8,7 @@ subtitle: Oberlicht abdecken
> Progress:: `$= dv.view('project-progress', {file: 'Abdeckung über der Wohnungstür'})`
> Target:: `$= dv.view('project-target', {file: 'Abdeckung über der Wohnungstür'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Abdeckung über der Wohnungstür'})`
> Tasks:: `$= const aufgaben = dv.page('Abdeckung über der Wohnungstür').file.inlinks.where(t => { const mt = dv.page(t.path); return mt.tags?.includes('process/task') && mt.status === 'In Arbeit'}); if (aufgaben.length > 0) { dv.header(4, aufgaben.length > 1 ? "Aufgaben" : "Aufgabe"); dv.list(aufgaben) }`
## Project Info
@@ -27,18 +26,3 @@ subtitle: Oberlicht abdecken
- [ ] Bleck lackieren
- [ ] Blech anbringen
## Aufgaben
```dataviewjs
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/task'));
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,
Progress,
Target
]
}));
```