🔣

Daily Report with Obsidian

2023/05/04に公開

デイリーレポートのテンプレート

#template_daily #daily #obsidian

ObsidianPluginであるTemplatorを用いて作ったDaily Report Templateです。ほとんどをここからそのまま引用し、Plan-Do-Review形式のスケジューラを追加して少し形式を変更しました。Dataview Pluginを用いた部分はテンプレート全体をコードブロッグ一つで表現するため、```を\```に変更しました。もし下記のテンプレートをそのまま使われる方は18行と79行の\```を```に変更してください。

---
creation date: <% tp.file.creation_date() %>
modification date: <% tp.file.last_modified_date() %>
tag: daily, <% tp.file.creation_date("YYYY-MM-DD") %>
---
<< [[<% tp.date.now("YYYY-MM-DD", -1) %>]] | [[<% tp.date.now("YYYY-MM-DD", 1) %>]]>> 

# <% tp.file.title %>

> [!quote]
> <% tp.web.daily_quote() %>
	
```dataview  
Table without ID L.text As "Today's Goals"  
From #dailies  
FLATTEN file.lists As L  
WHERE meta(L.section).subpath="Action Plan" and file.name= "<% fileDate = moment(tp.file.title, 'YYYY-MM-DD').add(1, 'd').format('YYYY-MM-DD') %>"  
\```

> [!todo]+ Habit Tracker  
> Sleep:: 0  
> Reading:: 0  
> Blog:: 0  

---

## Plan, Do, See

| Time  | Plan | Do  | Status | Review | 
| ----- | ---- | --- | ------ | ------ |
| 07:00 |      |     |        |        |
| 08:00 |      |     |        |        |
| 09:00 |      |     |        |        |
| 10:00 |      |     |        |        |
| 11:00 |      |     |        |        |
| 12:00 |      |     |        |        |
| 13:00 |      |     |        |        |
| 14:00 |      |     |        |        |
| 15:00 |      |     |        |        |
| 16:00 |      |     |        |        |
| 17:00 |      |     |        |        |
| 18:00 |      |     |        |        |
| 19:00 |      |     |        |        |
| 20:00 |      |     |        |        |
| 21:00 |      |     |        |        |
| 22:00 |      |     |        |        |
| 23:00 |      |     |        |        |
| 24:00 |      |     |        |        |
| 01:00 |      |     |        |        |
| 02:00 |      |     |        |        |

> [!success]+ Today I Learned
> - 
> -   
> -   
  
>[!Important]+ Highlights of the Day  
>- 1  
>- 2  
>- 3

---
## Action Plan
* 



---

```dataview  
TABLE WITHOUT ID  
file.link as Date,  
choice(Sleep > 7, "🟩", "🟥") as 🛌,  
choice(Exercise > 30, "🟩", "🟥") as 🏃,  
choice(Reading > 30, "🟩", "🟥") as 📚,  
choice(Meditation > 10, "🟩", "🟥") as 🧘,  
choice(Writing > 750, "🟩", "🟥") as ✍️FROM #dailiesWHERE file.day <= date(now) AND file.day >= date(now) - dur(7days)  
SORT file.day ASC  
\```

Discussion