Last Sync: 2026-04-13 22:05 (Mobile)
This commit is contained in:
17
.trash/0_System/Dashboard.md
Normal file
17
.trash/0_System/Dashboard.md
Normal file
@@ -0,0 +1,17 @@
|
||||
# 📊 대시보드 쿼리
|
||||
|
||||
### 🏗️ 활성 프로젝트 현황 (복사해서 사용)
|
||||
```dataview
|
||||
TABLE Deadline, Priority
|
||||
FROM "10_Projects"
|
||||
WHERE Status = "In Progress"
|
||||
SORT Deadline asc
|
||||
```
|
||||
|
||||
### 📅 오늘 마감 할 일 (복사해서 사용)
|
||||
|
||||
```dataview
|
||||
TABLE Project, Priority
|
||||
FROM "20_Tasks"
|
||||
WHERE DueDate = date(today) AND Done = false
|
||||
```
|
||||
12
.trash/0_System/Project_Template.md
Normal file
12
.trash/0_System/Project_Template.md
Normal file
@@ -0,0 +1,12 @@
|
||||
---
|
||||
Status: "Ready"
|
||||
Priority: "Medium"
|
||||
Deadline: 2024-12-31
|
||||
---
|
||||
# 🏗️ 프로젝트: {{title}}
|
||||
|
||||
## 📋 진행 가이드
|
||||
- [ ] 목표 설정하기
|
||||
- [ ] 관련 자료 수집
|
||||
|
||||
## 🔗 연결된 할 일 (Bases View)
|
||||
9
.trash/0_System/Task_Template.md
Normal file
9
.trash/0_System/Task_Template.md
Normal file
@@ -0,0 +1,9 @@
|
||||
---
|
||||
Project: "None"
|
||||
DueDate: 2024-12-31
|
||||
Priority: "P2"
|
||||
Done: false
|
||||
---
|
||||
# 📅 할 일: {{title}}
|
||||
|
||||
- 메모:
|
||||
Reference in New Issue
Block a user