873 B
873 B
journal, journal-date, journal-start-date, journal-end-date
| journal | journal-date | journal-start-date | journal-end-date |
|---|---|---|---|
| cimt yearly | 2022-01-01 | 2022-01-01 | 2022-12-31 |
2022-01 · 2022-02 · 2022-03 · 2022-04 · 2022-05 · 2022-06 · 2022-07 · 2022-08 · 2022-09 · 2022-10 · 2022-11 · 2022-12 ^01y
Journal/cimt AG/2021 ⋮ Journal/cimt AG/2022 ⋮ Journal/cimt AG/2023
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
]
}));
^2022i