Files
thpeetz-notes/Areas/cimt AG/Lightning Talks.md
T
2026-03-06 18:46:02 +01:00

1.6 KiB

tags, type
tags type
process/event
Beruflich

[!goal]- Lightning Talks Progress:: $= dv.view('progress', {file: 'Lightning Talks'}) Target:: $= dv.view('target', {file: 'Lightning Talks'}) Bar:: $= dv.view('total-progress-bar', {file: 'Lightning Talks'}) Projects:: $= const projects = dv.page('Lightning Talks').file.inlinks.where(p => { const mp = dv.page(p.path); return mp.tags?.includes('process/project') && mp.status != 'Archiv'}); if (projects.length > 0) { dv.header(4, projects.length > 1 ? "Projects" : "Project"); dv.list(projects) }

Wie sieht der Erfolg aus? Was soll erreicht werden?

cimt objects AG

Aufgaben

Termine

TABLE lightning_talks_orga as Standort
FROM #process/lightning_talks AND !"Resources/Templates"
SORT file.name DESC

Ideen

Offene Projekte

const pages = dv.current().file.inlinks.where(p => dv.page(p.path).tags?.includes('process/lecture')).where(p => dv.page(p.path).status != "Archiv");

let projects = new Set();
for (let projectPage of pages) {
    const page = dv.page(projectPage.path);
    projects.add([page.file.link, page.status, page.Progress, page.Target]);
}

dv.table(["Project", "Status", "Completed", "Tasks"], Array.from(projects));

Projekte

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
	]
}));