- 01 Projects/Dashboard.md: live Dataview dashboard (active, recent, by client, stale, production) - 01 Projects/Projects.base: Obsidian Bases view with 4 layouts (table, by client, active, cards) - Templates/Daily Template.md: upgraded — added Dataview queries, removed broken Work Tasks link - Templates/Weekly Review Template.md: new — fractal journaling weekly review with auto-queries Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
55 lines
1.2 KiB
Markdown
55 lines
1.2 KiB
Markdown
---
|
|
name: "Project Dashboard"
|
|
type: dashboard
|
|
tags: [dashboard, projects, index]
|
|
updated: 2026-04-14
|
|
---
|
|
|
|
# Project Dashboard
|
|
|
|
> Live view — powered by Dataview. For static table see [[Projects Index]].
|
|
|
|
## Active Projects
|
|
|
|
```dataview
|
|
TABLE client, tech, dateformat(file.mtime, "yyyy-MM-dd") AS "Last Updated"
|
|
FROM "01 Projects"
|
|
WHERE status = "active" AND type != "dashboard"
|
|
SORT file.mtime DESC
|
|
```
|
|
|
|
## Recently Changed (Last 7 Days)
|
|
|
|
```dataview
|
|
TABLE client, dateformat(file.mtime, "yyyy-MM-dd HH:mm") AS "Modified"
|
|
FROM "01 Projects"
|
|
WHERE file.mtime >= date(today) - dur(7 days) AND type != "dashboard"
|
|
SORT file.mtime DESC
|
|
```
|
|
|
|
## Projects by Client
|
|
|
|
```dataview
|
|
TABLE WITHOUT ID file.link AS "Project", tech, status
|
|
FROM "01 Projects"
|
|
WHERE client AND type != "dashboard"
|
|
SORT client ASC, file.name ASC
|
|
```
|
|
|
|
## Stale — No Update in 30+ Days
|
|
|
|
```dataview
|
|
TABLE client, status, dateformat(file.mtime, "yyyy-MM-dd") AS "Last Touch"
|
|
FROM "01 Projects"
|
|
WHERE status = "active" AND file.mtime < date(today) - dur(30 days) AND type != "dashboard"
|
|
SORT file.mtime ASC
|
|
```
|
|
|
|
## Production / Deployed
|
|
|
|
```dataview
|
|
TABLE client, deploy, url
|
|
FROM "01 Projects"
|
|
WHERE status = "production" AND type != "dashboard"
|
|
SORT client ASC
|
|
```
|