mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-07 09:42:52 -08:00
17 lines
340 B
Text
17 lines
340 B
Text
title: TaskManagementExample
|
|
|
|
! Outstanding tasks
|
|
|
|
<$list filter="[tag[task]!tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$view field="title" format="link"/></$checkbox>
|
|
|
|
</$list>
|
|
|
|
! Completed tasks
|
|
|
|
<$list filter="[tag[task]tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$view field="title" format="link"/></$checkbox>
|
|
|
|
</$list>
|