1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-12 23:14:21 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/samples/Tasks/TaskManagementExample.tid

18 lines
372 B
Plaintext
Raw Normal View History

2012-11-30 09:22:17 +00:00
title: TaskManagementExample
! Outstanding tasks
2013-02-05 19:12:16 +00:00
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
2012-11-30 09:22:17 +00:00
2013-01-18 09:33:16 +00:00
<$checkbox tag="done"> <$view field="title" format="link"/></$checkbox>
2012-11-30 09:22:17 +00:00
2013-01-18 09:33:16 +00:00
</$list>
2012-11-30 09:22:17 +00:00
! Completed tasks
2013-02-05 19:12:16 +00:00
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
2012-11-30 09:22:17 +00:00
<$checkbox tag="done"> ~~<$view field="title" format="link"/>~~</$checkbox>
2012-12-13 21:30:50 +00:00
2013-01-18 09:33:16 +00:00
</$list>