You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

335 lines
4.5 KiB

---
Alias: ["Life Orga", "Life Hacks"]
Tag: ["Admin", "Life","Goals"]
Date: 2021-08-12
DocType: "Personal"
Hierarchy: "Root"
TimeStamp: 2021-08-12
location: [51.514678599999996, -0.18378583926867909]
CollapseMetaTable: Yes
---
 
```button
name Create New Task
type note(New Task) template
action Template Task
id NewTask
```
^button-LifeOrgaNewTask
```button
name Save
type command
action Save current file
```
^button-LifeOrgaSave
 
# Life Organisation
 
```ad-abstract
title: Summary
collapse: open
This space centralises all tasks and to-dos!
```
 
```toc
style: number
```
 
---
 
### Task list
 
```dataview
table Priority, Status, NextReviewDate as "Next Review Date", DueDate as "Due Date" from [[@Life Organisation]]
where DocType = "Task"
sort DueDate ascending, NextReviewDate ascending
```
 
#### Review overdue
```dataview
table NextReviewDate as "Next Review Date" from [[@Life Organisation]]
where DocType = "Task" and NextReviewDate < date(today)
sort NextReviewDate ascending
```
&emsp;
#### Delivery overdue
```dataview
table DueDate as "Due Date" from [[@Life Organisation]]
where DocType = "Task" and DueDate < date(today)
sort DueDate ascending
```
&emsp;
#### Priority tasks
```dataview
Table Priority, DueDate as "Due Date" from [[@Life Organisation]]
Where DocType = "Task" and DueDate >= date(today) and Priority = "High"
Sort DueDate ascending
```
&emsp;
---
&emsp;
### Todo list
&emsp;
**[[Life Admin]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Life Admin
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
3 years ago
**[[Family]]**
3 years ago
```ad-task
~~~tasks
3 years ago
not done
path includes Family
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
3 years ago
```
&emsp;
**[[Personal projects]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Personal projects
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[Lifestyle]]**
3 years ago
```ad-task
~~~tasks
not done
path includes lifestyle
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[IT & Computer]]**
3 years ago
```ad-task
~~~tasks
not done
path includes IT & Computer
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[Finances]]**
3 years ago
```ad-task
~~~tasks
not done
path includes Finance
3 years ago
path does not include Ledger
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
#### Overdue Todos
```dataview
task from [[@Life Organisation]]
where DocType = "Task" and DueDate < date(today)
```
&emsp;
#### Urgent Todos
```dataview
task from [[@Life Organisation]]
where DocType = "Task" and DueDate < date(today) + dur(3 days)
```
&emsp;
#### High priority
```dataview
Task from [[@Life Organisation]]
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
```
&emsp;
#### Closed To-dos
**[[Life Admin]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Life Admin
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
3 years ago
**[[Family]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
3 years ago
done
path includes Family
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
3 years ago
```
&emsp;
**[[Personal projects]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Personal projects
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[Lifestyle]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Lifestyle
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[IT & Computer]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes IT & Computer
3 years ago
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
**[[Finances]]**
3 years ago
```ad-task
collapse: closed
~~~tasks
done
path includes Finances
3 years ago
path does not include Ledger
description does not include :birthday:
description does not include :gift:
sort by due
hide backlink
hide task count
3 years ago
~~~
```
&emsp;
&emsp;