2.2 KiB
2.2 KiB
work_hours
| work_hours |
|---|
| 0 |
Monats Ziele - <% tp.file.title %>
- Objective one
- Objective two
- Objective three ^<% tp.date.now("MM", 0, tp.file.title, "YYYY-MM")%>i
<%tp.date.now("YYYY-[Q]Q", 0, tp.file.title, "YYYY-MM")%>#^q<%tp.date.now("Q", 0, tp.file.title, "YYYY-MM")%>i | <%tp.date.now("YYYY", 0, tp.file.title, "YYYY-MM")%>#^<%tp.date.now("YYYY", 0, tp.file.title, "YYYY-MM")%>i
Aufgaben
[!examples]- Backlog
not done no scheduled date no start date no due date path regex does not match /^Resources\/Templates\/.*/ path regex does not match /^Übersicht\/.*/ path regex does not match /^Journal\/.*/
[!todo]- Aktive Aufgaben
not done starts on or before <% tp.date.now("YYYY-MM", "P+1M", tp.file.title, "YYYY-MM") %>-01 has start date no scheduled date path regex does not match /^Resources\/Templates\/.*/ path regex does not match /^Übersicht\/.*/ path regex does not match /^Journal\/.*/
[!hint]- Geplante Aufgaben
not done scheduled <% tp.date.now("YYYY-MM", 0, tp.file.title, "YYYY-MM") %>-01 <% tp.date.now("YYYY-MM", "P+1M", tp.file.title, "YYYY-MM") %>-01 path regex does not match /^Resources\/Templates\/.*/ path regex does not match /^Übersicht\/.*/
[!done]- Erledigte Aufgaben
TASK FROM !"Resources/Templates" WHERE completed AND completion >= date(<% tp.date.now("YYYY-MM", 0, tp.file.title, "YYYY-MM") %>-01) AND completion < date(<% tp.date.now("YYYY-MM", "P+1M", tp.file.title, "YYYY-MM") %>-01) SORT completion, start
Geburtstage
TABLE birthday as Geburtstag, truncate(string(date(today) - birthday),2, "") AS Alter
FROM "Infos/Kontakte"
WHERE birthday.month = <% moment(tp.file.title,'YYYY-MM').format("MM") %>
SORT birthday.day
Anwesenheit
TABLE WITHOUT ID
file.link as Datum,
choice(work_home = true, "✅", "❌") as HomeOffice,
choice(work_office = true, "✅", "❌") as Büro
FROM "Journal/cimt AG"
WHERE file.day >= date(<% tp.date.now("YYYY-MM", 0, tp.file.title, "YYYY-MM") %>-01) AND file.day < date(<% tp.date.now("YYYY-MM", "P+1M", tp.file.title, "YYYY-MM") %>-01)
SORT file.day ASC