vault backup: 2025-12-10 11:37:35

This commit is contained in:
2023-05-15 17:16:05 +02:00
committed by Thomas Peetz
parent 91bf72fc87
commit 73f2162ddf
6049 changed files with 513094 additions and 227748 deletions
@@ -0,0 +1,14 @@
---
title: Arztbesuch Thomas
completed?: no
---
## Arztbesuch
- [x] Gesundheitscheck Thomas [start::2023-09-11] [completion:: 2023-12-23]
- Herz (erbliche Vorbelastung durch Mutter?)
- Prostata
- Venen (linker Oberschenkel)
- Endokrinologie
Hiermit entbinde ich Herrn Dr. Giakas gegenüber meiner Ehefrau von der Schweigepflicht bis auf schriftlichen Widerruf.
@@ -0,0 +1,21 @@
---
status: Archiv
tags:
- process/task
---
%%
Project:: [[Krankenakte Thomas]]
Bar:: `$= dv.view('total-progress-bar', {file: "Blutuntersuchung"})`
%%
## Aufgabenbeschreibung
## Überlegungen
## Unteraufgaben
- [x] Blutabnahme
- [x] Besprechung der Laborwerte [completion:: 2024-01-14]
- [x] Laborwerte abgelegt [completion:: 2024-01-14]
- [x] Rechnung erhalten [completion:: 2024-01-23]
- [x] Rechnung bezahlt [completion:: 2024-01-30]
@@ -0,0 +1,15 @@
---
status: Backlog
tags:
- process/task
---
%%
Project:: [[Krankenakte Thomas]]
Bar:: `$= dv.view('total-progress-bar', {file: "Hautkrebsscreening"})`
%%
## Aufgabenbeschreibung
## Überlegungen
## Unteraufgaben
- [ ] Termin zur Vorsorge vereinbart [start:: 2024-07-04]
@@ -0,0 +1,59 @@
---
status: Archiv
tags:
- process/project
subtitle: Krankenakte Thomas
type: Gesundheit
---
> [!abstarct]+ Project
> Goal:: [[Ablage]]
> Progress:: `$= dv.view('project-progress', {file: 'Krankenakte Thomas'})`
> Target:: `$= dv.view('project-target', {file: 'Krankenakte Thomas'})`
> Bar:: `$= dv.view('project-progress-bar', {file: 'Krankenakte Thomas'})`
> Tasks:: `$= const aufgaben = dv.page('Krankenakte Thomas').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
]
}));
```