Absolue-Necessite/Dashboard.md

38 lines
727 B
Markdown
Raw Normal View History

2023-02-21 12:31:56 +00:00
---
banner: "![[Illustrations/Inspiration/campbell-white-the-great-council-copy.jpg]]"
banner_y: 0.23143
---
# Dashboard
2023-03-01 21:14:18 +00:00
```dataview
2023-03-01 22:20:42 +00:00
TABLE dateformat(file.mtime, "dd.MM.yyyy - HH:mm")
AS "Derniers travaux en cours"
FROM ""
WHERE file.name != this.file.name
SORT file.mtime DESC LIMIT 5
2023-03-01 21:14:18 +00:00
```
2023-03-10 11:02:26 +00:00
> [!quote] Inspiration du jour
> ```dataviewjs
> let quotesList = []
> for (q of dv.page("Notes/quote").file.lists.values)quotesList.push(q.text)
> dv.paragraph(quotesList[DateTime.now().toFormat("o") % quotesList.length])
> ```
2023-02-21 12:31:56 +00:00
2023-03-01 21:02:17 +00:00
## Todo
2023-03-01 22:20:42 +00:00
2022-12-23 09:09:03 +00:00
```dataview
2023-01-01 20:03:56 +00:00
TASK
2022-12-23 09:09:03 +00:00
WHERE !completed
2023-01-01 20:03:56 +00:00
WHERE contains(tags, "#todo")
2022-12-23 09:09:03 +00:00
GROUP BY file.folder
```
2023-03-01 21:02:17 +00:00
## To Review
2022-12-23 09:09:03 +00:00
2023-01-01 20:03:56 +00:00
```dataview
TASK
WHERE !completed
WHERE contains(tags, "#toreview")
2022-12-23 09:09:03 +00:00
```