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.
159 lines
1.9 KiB
159 lines
1.9 KiB
3 years ago
|
---
|
||
|
|
||
|
Alias: [""]
|
||
|
Tag: [""]
|
||
|
Date: <% tp.date.now("YYYY-MM-DD") %>
|
||
|
DocType:
|
||
|
ChildrenType: "Task"
|
||
|
Hierarchy: "Root"
|
||
|
TimeStamp:
|
||
|
location:
|
||
|
CollapseMetaTable: Yes
|
||
|
|
||
|
---
|
||
|
|
||
|
Parent::
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
```button
|
||
|
name Create Note
|
||
|
type append template
|
||
|
action NewFile
|
||
|
id CreateNote
|
||
|
```
|
||
|
^button-<% tp.file.title.split("@")[1] %>NewTask
|
||
|
|
||
|
```button
|
||
|
name Save
|
||
|
type command
|
||
|
action Save current file
|
||
|
id Save
|
||
|
```
|
||
|
^button-<% tp.file.title.split("@")[1] %>Save
|
||
|
|
||
|
 
|
||
|
|
||
|
# Task Master
|
||
|
|
||
|
 
|
||
|
|
||
|
```ad-abstract
|
||
|
title: Summary
|
||
|
collapse: open
|
||
|
This space centralises all tasks and to-dos in the <% tp.file.folder() %> folder.
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
```toc
|
||
|
style: number
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### Task list
|
||
|
|
||
|
 
|
||
|
|
||
|
```dataviewjs
|
||
|
const {taskFunc} = customJS
|
||
|
taskFunc.getAllTasks({app, dv, luxon, that:this, theme: })
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Review overdue
|
||
|
|
||
|
```dataviewjs
|
||
|
const {taskFunc} = customJS
|
||
|
taskFunc.getLateReviewTasks({app, dv, luxon, that:this, theme: })
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Delivery overdue
|
||
|
|
||
|
```dataviewjs
|
||
|
const {taskFunc} = customJS
|
||
|
taskFunc.getOverdueTasks({app, dv, luxon, that:this, theme: })
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
#### Priority tasks
|
||
|
|
||
|
```dataviewjs
|
||
|
const {taskFunc} = customJS
|
||
|
taskFunc.getPriorityTasks({app, dv, luxon, that:this, theme: })
|
||
|
```
|
||
|
|
||
|
 
|
||
|
|
||
|
---
|
||
|
|
||
|
 
|
||
|
|
||
|
### 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
|
||
|
```
|
||
|
|
||
|
 
|
||
|
 
|