vault backup: 2026-03-07 12:19:22
This commit is contained in:
@@ -1,60 +0,0 @@
|
||||
---
|
||||
type: Projekt
|
||||
status: Archiv
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Büro
|
||||
|
||||
---
|
||||
|
||||
> [!abstract]+ Project
|
||||
> Goal:: [[Ablage]]
|
||||
> Progress:: `$= dv.view('project-progress', {file: 'Büro'})`
|
||||
> Target:: `$= dv.view('project-target', {file: 'Büro'})`
|
||||
> Bar:: `$= dv.view('project-progress-bar', {file: 'Büro'})`
|
||||
> Tasks:: `$= const aufgaben = dv.page('Büro').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
|
||||
|
||||
|
||||
## 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
|
||||
]
|
||||
}));
|
||||
```
|
||||
@@ -1,10 +1,7 @@
|
||||
---
|
||||
status: Review
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Project Board
|
||||
type: Dokumentation
|
||||
|
||||
---
|
||||
|
||||
> [!project]- Projekt
|
||||
|
||||
@@ -1,9 +1,7 @@
|
||||
---
|
||||
status: Aktiv
|
||||
tags:
|
||||
- process/project
|
||||
subtitle: Obsidian Setup
|
||||
|
||||
---
|
||||
> [!abstract]- Project
|
||||
> Goal:: [[Einführung von SMART Zielen im Obsidian Workflow]]
|
||||
|
||||
@@ -1,51 +0,0 @@
|
||||
---
|
||||
tags:
|
||||
- process/goal
|
||||
type: Wohlstand
|
||||
---
|
||||
|
||||
> [!note]+ Ziel
|
||||
> Progress:: `$= dv.view('progress', {file: 'Ablage'})`
|
||||
> Target:: `$= dv.view('target', {file: 'Ablage'})`
|
||||
> Bar:: `$= dv.view('total-progress-bar', {file: 'Ablage'})`
|
||||
Projects:: `$= const projects = dv.page('Ablage').file.inlinks.where(p => { const mp = dv.page(p.path); return mp.tags?.includes('process/project') && mp.status != 'Archiv'}); if (projects.length > 0) { dv.header(4, projects.length > 1 ? "Projects" : "Project"); dv.list(projects) }`
|
||||
|
||||
## Wie sieht der Erfolg aus? Was soll erreicht werden?
|
||||
-
|
||||
|
||||
## Related core values
|
||||
|
||||
-
|
||||
|
||||
## Projekte, um das Ziel zu erreichen
|
||||
|
||||
### Ideen
|
||||
|
||||
### Offene Projekte
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/project')).where(p => dv.page(p.path).status == "Aktiv");
|
||||
|
||||
let projects = new Set();
|
||||
for (let projectPage of pages) {
|
||||
const page = dv.page(projectPage.path);
|
||||
projects.add([page.file.link, page.status, page.Progress, page.Target]);
|
||||
}
|
||||
|
||||
dv.table(["Project", "Status", "Completed", "Tasks"], Array.from(projects));
|
||||
```
|
||||
|
||||
### Projekte
|
||||
```dataviewjs
|
||||
const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/project'));
|
||||
|
||||
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,
|
||||
page.Progress,
|
||||
page.Target
|
||||
]
|
||||
}));
|
||||
```
|
||||
Reference in New Issue
Block a user