68 lines
2.3 KiB
Markdown
68 lines
2.3 KiB
Markdown
---
|
|
tags:
|
|
- process/project
|
|
status: Backlog
|
|
subtitle: Aufgaben für die Domain thpeetz.de
|
|
---
|
|
|
|
> [!abstract]+ Project
|
|
> Goal::
|
|
> Progress:: `$= dv.view('project-progress', {file: 'Domain thpeetz.de'})`
|
|
> Target:: `$= dv.view('project-target', {file: 'Domain thpeetz.de'})`
|
|
> Bar:: `$= dv.view('project-progress-bar', {file: 'Domain thpeetz.de'})`
|
|
> Tasks:: `$= const aufgaben = dv.page('Domain thpeetz.de').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
|
|
|
|
## Thoughts
|
|
|
|
## Resources
|
|
|
|
|
|
## Review questions
|
|
|
|
|
|
## Aufgaben
|
|
|
|
- [x] Update Go auf Version 1.18.9 [completion:: 2024-01-11]
|
|
- [x] Konfiguration der Integration von Github in OpenProject [completion:: 2024-01-11]
|
|
- [x] Integration von Gitlab und OpenProject [completion:: 2024-01-11]
|
|
- [x] Installation von OpenProject [completion:: 2024-01-11]
|
|
- [x] Adresse thomas.peetz@its-people.de überprüfen und austragen [completion:: 2024-01-11]
|
|
- [x] Verwendung der Domain ingenieurbuero-peetz.de beendet [scheduled:: 2024-03-12] [completion:: 2024-03-12]
|
|
- [x] Emailadresse thomas.peetz@ingenieurbuero-peetz.de auflösen [scheduled:: 2024-02-28] [completion:: 2024-02-28]
|
|
- [x] Adresse thomas.peetz@ingenieurbuero-peetz.de überprüfen und austragen [scheduled:: 2024-02-07] [completion:: 2024-02-07]
|
|
|
|
|
|
## 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
|
|
]
|
|
}));
|
|
```
|