70 lines
2.0 KiB
Markdown
70 lines
2.0 KiB
Markdown
---
|
|
status: Archiv
|
|
tags:
|
|
- process/project
|
|
subtitle: PURR Development
|
|
|
|
---
|
|
> [!abstract]- Project
|
|
> Goal::
|
|
> Progress:: `$= dv.view('project-progress', {file: 'PURR Development'})`
|
|
> Target:: `$= dv.view('project-target', {file: 'PURR Development'})`
|
|
> Bar:: `$= dv.view('project-progress-bar', {file: 'PURR Development'})`
|
|
> Tasks:: `$= const aufgaben = dv.page('PURR Development').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
|
|
ROARs Room Organization Attendance Retrieval system
|
|
|
|
## Resources
|
|
|
|
- [Stories](https://dev.azure.com/cimt-ag/purr/_backlogs/backlog/purr%20Team/Stories)
|
|
- [Pull Requests](https://dev.azure.com/cimt-ag/purr/_git/purr/pullrequests?_a=mine)
|
|
|
|
### Server
|
|
- Test
|
|
- Prod
|
|
- Dev - Berlin
|
|
- BERVL1PRR
|
|
- 192.168.210.69
|
|
- Benutzer: purr
|
|
|
|
## Review questions
|
|
|
|
|
|
## Aufgaben
|
|
- [x] Namen für die Neuentwicklung von PURR finden und Git Projekt aufsetzen [start:: 2025-09-29] [scheduled:: 2025-09-30] [completion:: 2025-10-22]
|
|
|
|
## 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
|
|
]
|
|
}));
|
|
```
|