# Next Board
## Do Now
### Files
```dataview
TABLE
default(priority, 1) as P,
regexreplace(file.folder, "/.*/", "/…/") as Folder,
default(Topic, default(Parent, "")) as Topic,
default(
Progress,
"<progress value='" +
choice(length(file.tasks) > 0, round(length(filter(file.tasks.completed, (t) => t = true)) * 100 / length(file.tasks)), 0) +
"' max='100'></progress>"
) as Progress
FROM #now
SORT priority DESC, file.path
```
### Tasks
```dataview
TASK FROM #now
WHERE !checked
GROUP BY regexreplace(file.folder, "/.*/", "/…/")
```
See [[,tasks|more tasks]].
## External Tasks
- [Personal: Todoist](https://todoist.com/app/)
- [Work: GitHub](https://github.com/issues/assigned)
## Triage
Finished all? Then [[,triage|Triage notes to work on]].