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