Files
2026-03-02 16:29:09 +01:00

44 lines
1.2 KiB
Markdown

---
tags:
- cimt/customer
- cimt/managed_services
---
## Resources
## Aufgaben
- [x] Jira-Zugang eingerichtet [start:: 2026-02-24] [completion:: 2026-0227] #process/task
- [x] Conflucence Zugang eingerichtet [start:: 2026-02-24] [completion:: 2026-03-02] #process/task
## 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
]
}));
```