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

24 lines
734 B
Plaintext
Raw Normal View History

2013-08-25 21:48:53 +00:00
created: 201308252133
creator: JeremyRuston
modified: 201308252133
modifier: JeremyRuston
2012-11-30 09:22:17 +00:00
title: TaskManagementExample
2013-08-25 21:48:53 +00:00
TiddlyWiki5 can be used as a simple task management system without further customisation. The idea is that tasks be tagged `task`, with those that are completed also tagged `done`. In this way it is straightforward to generate task lists.
2012-11-30 09:22:17 +00:00
! 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
<$checkbox tag="done"> <$link to={{!!title}}><$view field="title"/></$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"> ~~<$link to={{!!title}}><$view field="title"/></$link>~~</$checkbox>
2012-12-13 21:30:50 +00:00
2013-01-18 09:33:16 +00:00
</$list>