## All Inputs
1. Intro to planning
2. e
3. How to craft the life you want
4. How to prioritise your goals
5. How to make your goals manageable
6. How to allocate your time
7. Where your time is actually going
8. e
9. Intro to execution
10. Identify high-leverage actions
11. Defining a productive day
```dataview
table Status, Created
from [[]] and #inputCollection
where contains(Collection, [[]])
Sort Created desc
```
## By Status
### No Status
```dataview
table Created, rating, source
FROM [[]] and #input AND !"Hidden"
where !Status AND contains(Collection, [[]])
SORT Created desc
```
### Not Started `#🟥`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟥 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Consuming Media `#🟧`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟧 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Implementation `#🟨`
```dataview
table Created, rating, source
FROM [[]] and #input AND #🟨 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Finished `#🟩`
```dataview
table finished, rating, source
FROM [[]] and #input AND #🟩 AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```
### Archived `#⬛`
```dataview
table finished, rating, source
FROM [[]] and #input AND #⬛ AND !"Hidden"
where contains(Collection, [[]])
SORT Created desc
```