912 B
912 B
id, aliases, tags, journal, journal-date, journal-end-date, journal-start-date
| id | aliases | tags | journal | journal-date | journal-end-date | journal-start-date |
|---|---|---|---|---|---|---|
| 2023 | cimt yearly | 2023-01-01 | 2023-12-31 | 2023-01-01 |
2023-01 · 2023-02 · 2023-03 · 2023-04 · 2023-05 · 2023-06 · 2023-07 · 2023-08 · 2023-09 · 2023-10 · 2023-11 · 2023-12 ^01y
Journal/cimt AG/2022 ⋮ Journal/cimt AG/2023 ⋮ Journal/cimt AG/2024
Jahresziele
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,
tasks.where(t => t.fullyCompleted === true).length,
tasks.length
]
}));
^2023i