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.

250 lines
3.0 KiB

---
Alias: ["lebv.org Tasks"]
Tag: ["Family", "Web", "lebv", "Archive", "Email", "Website"]
Date: 2021-08-12
DocType: "Project"
Hierarchy: "Root"
TimeStamp:
location: [51.514678599999996, -0.18378583926867909]
CollapseMetaTable: Yes
---
Parent:: [[@lebv.org|lebv.org]], [[Personal projects]], [[IT & Computer]]
---
 
```button
name Create New Task
type note(New Task) template
action Template Task
id NewTask
```
^button-lebvNewTask
```button
name Save
type command
action Save current file
id Save
```
^button-lebvTMSave
 
# Task Master for lebv.org
 
```ad-abstract
title: Summary
collapse: open
This space centralises all tasks and to-dos in a specific folder.
```
 
```toc
style: number
```
 
---
 
### Task list
 
```dataviewjs
const {taskFunc} = customJS
taskFunc.getAllTasks({app, dv, luxon, that:this, theme: "lebv"})
```
 
#### Review overdue
```dataviewjs
const {taskFunc} = customJS
taskFunc.getLateReviewTasks({app, dv, luxon, that:this, theme: "lebv"})
```
 
#### Delivery overdue
```dataviewjs
const {taskFunc} = customJS
taskFunc.getOverdueTasks({app, dv, luxon, that:this, theme: "lebv"})
```
 
#### Priority tasks
```dataviewjs
const {taskFunc} = customJS
taskFunc.getPriorityTasks({app, dv, luxon, that:this, theme: "lebv"})
```
 
---
 
### Todo list
 
**[[lebv Research Tasks|Research]]**
```ad-task
~~~tasks
not done
path includes lebv Research Tasks
sort by due
hide backlink
hide task count
~~~
```
 
**[[WebPublishing Tasks|Website]]**
```ad-task
~~~tasks
not done
path includes WebPublishing Tasks
sort by due
hide backlink
hide task count
~~~
```
 
**[[lebv Email Tasks|Email]]**
```ad-task
~~~tasks
not done
path includes lebv Email Tasks
sort by due
hide backlink
hide task count
~~~
```
 
**[[Hosting Tasks|WebHosting]]**
```ad-task
~~~tasks
not done
path includes Hosting Tasks
sort by due
hide backlink
hide task count
~~~
```
 
#### Overdue Todos
```dataview
task from "04.01 lebv.org"
where DocType = "Task" and DueDate < date(today)
```
&emsp;
#### Urgent Todos
```dataview
task from "04.01 lebv.org"
where DocType = "Task" and DueDate < date(today) + dur(3 days)
```
&emsp;
#### High priority
```dataview
Task from "04.01 lebv.org"
Where DocType = "Task" and Priority = "High" and DueDate >= date(today)
```
&emsp;
#### Completed To-Dos
**[[lebv Research Tasks|Research]]**
```ad-task
collapse: closed
~~~tasks
done
path includes lebv Research Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
**[[WebPublishing Tasks|Website]]**
```ad-task
collapse: closed
~~~tasks
done
path includes WebPublishing Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
**[[lebv Email Tasks|Email]]**
```ad-task
collapse: closed
~~~tasks
done
path includes lebv Email Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
**[[Hosting Tasks|WebHosting]]**
```ad-task
collapse: closed
~~~tasks
done
path includes Hosting Tasks
sort by due
hide backlink
hide task count
~~~
```
&emsp;
&emsp;