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.
162 lines
2.1 KiB
162 lines
2.1 KiB
3 years ago
|
---
|
||
|
|
||
|
Alias: [""]
|
||
|
Tag: [""]
|
||
3 years ago
|
Date: <% tp.date.now("YYYY-MM-DD") %>
|
||
3 years ago
|
DocType:
|
||
|
Hierarchy: "Root"
|
||
|
TimeStamp:
|
||
3 years ago
|
location:
|
||
3 years ago
|
CollapseMetaTable: Yes
|
||
|
|
||
|
---
|
||
|
|
||
|
Parent::
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
```button
|
||
|
name Create New Task
|
||
|
type note(New Task) template
|
||
|
action Template Task
|
||
|
id NewTask
|
||
|
```
|
||
3 years ago
|
^button-<% tp.file.title.split("@")[1] %>NewTask
|
||
3 years ago
|
|
||
|
```button
|
||
|
name Save
|
||
|
type command
|
||
|
action Save current file
|
||
|
id Save
|
||
|
```
|
||
3 years ago
|
^button-<% tp.file.title.split("@")[1] %>Save
|
||
3 years ago
|
|
||
|
 
|
||
|
|
||
|
# Task Master
|
||
|
|
||
|
 
|
||
|
|
||
|
```ad-abstract
|
||
|
title: Summary
|
||
|
collapse: open
|
||
3 years ago
|
This space centralises all tasks and to-dos in the <% tp.file.folder() %> folder.
|
||
3 years ago
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
```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
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Delivery overdue
|
||
|
|
||
|
```dataview
|
||
|
table DueDate as "Due Date" from "Life Organisation"
|
||
|
where DocType = "Task" and DueDate < date(today)
|
||
|
sort DueDate ascending
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### 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
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Todo list
|
||
|
|
||
|
 
|
||
|
|
||
|
**[[Template Task]]**
|
||
|
|
||
|
```tasks
|
||
|
not done
|
||
|
path includes Template
|
||
|
sort by due
|
||
|
hide backlink
|
||
|
hide task count
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Overdue Todos
|
||
|
|
||
|
```dataview
|
||
|
task from "Life Organisation"
|
||
|
where DocType = "Task" and DueDate < date(today)
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Urgent Todos
|
||
|
|
||
|
```dataview
|
||
|
task from "Life Organisation"
|
||
|
where DocType = "Task" and DueDate < date(today) + dur(3 days)
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### High priority
|
||
|
|
||
|
```dataview
|
||
|
Task from "Life Organisation"
|
||
|
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Completed tasks
|
||
|
|
||
|
**[[Template Task]]**
|
||
|
|
||
|
```tasks
|
||
|
done
|
||
|
path includes Template
|
||
|
sort by due
|
||
|
hide backlink
|
||
|
hide task count
|
||
|
```
|
||
|
|
||
|
 
|
||
|
 
|