mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-08 19:09:57 +00:00
18 lines
372 B
Plaintext
18 lines
372 B
Plaintext
title: TaskManagementExample
|
|
|
|
! Outstanding tasks
|
|
|
|
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$view field="title" format="link"/></$checkbox>
|
|
|
|
</$list>
|
|
|
|
! Completed tasks
|
|
|
|
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> ~~<$view field="title" format="link"/>~~</$checkbox>
|
|
|
|
</$list>
|