vault backup: 2026-03-17 18:59:42
This commit is contained in:
@@ -8,5 +8,5 @@ tags:
|
||||
- [x] Benutzerinfo erhalten #process/task [start:: 2026-02-26] [scheduled:: 2026-03-04] [completion:: 2026-03-04]
|
||||
- [x] Einrichtung 2FA #process/task [start:: 2026-02-26] [scheduled:: 2026-03-04] [completion:: 2026-03-04]
|
||||
- [x] Einrichtung personalisierter Benutzer angestossen #process/task [start:: 2026-03-04] [scheduled:: 2026-03-05] [completion:: 2026-03-05]
|
||||
- [ ] Einrichtung der RDP und SSH Verbindungen auf Terminalserver #process/task [start:: 2026-03-04] [scheduled:: 2026-03-17]
|
||||
- [ ] Einrichtung der RDP und SSH Verbindungen auf Terminalserver #process/task [start:: 2026-03-04] [scheduled:: 2026-03-18]
|
||||
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
---
|
||||
tags:
|
||||
- cimt/customer
|
||||
- cimt/managed_services
|
||||
---
|
||||
## 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);
|
||||
|
||||
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
|
||||
]
|
||||
}));
|
||||
```
|
||||
|
||||
## 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,
|
||||
tasks.where(t => t.fullyCompleted === true).length,
|
||||
tasks.length
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -5,4 +5,4 @@ tags:
|
||||
---
|
||||
|
||||
## Aufgaben
|
||||
- [ ] VPN Zugang erfolgreich eingerichtet [scheduled:: 2026-03-17]
|
||||
- [ ] VPN Zugang erfolgreich eingerichtet [scheduled:: 2026-03-18]
|
||||
|
||||
Reference in New Issue
Block a user