vault backup: 2025-12-10 11:37:35
This commit is contained in:
@@ -0,0 +1,66 @@
|
||||
---
|
||||
id: Captain auf die Brücke
|
||||
aliases: []
|
||||
tags:
|
||||
- process/project
|
||||
- presentation/lecture
|
||||
status: Archiv
|
||||
subtitle: Führen wie Star Trek Captain Jean-Luc Picard
|
||||
lecture_date: 2024-04-19
|
||||
---
|
||||
>[!info]- Projekt
|
||||
>Goal:: [[Lightning Talks]]
|
||||
>Progress:: `$= dv.view('project-progress', {file: 'Captain auf die Brücke'})`
|
||||
>Target:: `$= dv.view('project-target', {file: 'Captain auf die Brücke'})`
|
||||
>Bar:: `$= dv.view('project-progress-bar', {file: 'Captain auf die Brücke'})`
|
||||
>Tasks:: `$= const aufgaben = dv.page('Captain auf die Brücke').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
|
||||
Vortrag gehalten im Termin [[2024-04-19 Lightning Talks]]
|
||||
|
||||
## Thoughts
|
||||
|
||||
## Resources
|
||||
|
||||
|
||||
## Review questions
|
||||
|
||||
|
||||
## Aufgaben
|
||||
- [x] Vortrag angemeldet [start:: 2024-03-27] [completion:: 2024-03-28]
|
||||
- [x] Artikel gesammelt [start:: 2024-04-08] [completion:: 2024-04-19]
|
||||
- [x] Vortrag erstellt [start:: 2024-04-08] [completion:: 2024-04-19]
|
||||
- [x] Termin erhalten [start:: 2024-04-09] [completion:: 2024-04-19]
|
||||
- [x] Vortrag gehalten [start:: 2024-04-09] [completion:: 2024-04-19]
|
||||
|
||||
## 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
|
||||
]
|
||||
}));
|
||||
```
|
||||
Reference in New Issue
Block a user