vault backup: 2026-02-20 15:50:22

This commit is contained in:
Thomas Peetz
2026-02-20 15:50:22 +01:00
parent d9adc15b56
commit 12792a6bf7
45 changed files with 575 additions and 119 deletions
+43
View File
@@ -0,0 +1,43 @@
---
tags:
- process/management
---
## Team
```dataview
TABLE location AS Standort
FROM [[]] AND !outgoing([[]]) AND "Infos/Kontakte"
SORT file.name DESC
LIMIT 20
```
## Links
## 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);
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
>![[Managed Services Team Daily#Termine]]
>
```dataview
LIST
FROM [[]] AND !outgoing([[]]) AND "Journal"
SORT file.name DESC
LIMIT 20
```
## Ideen