mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-04 00:56:17 +00:00
2ffcbb76eb
Keeps things tidier
22 lines
689 B
Plaintext
22 lines
689 B
Plaintext
created: 201308252133
|
|
modified: 201308252133
|
|
title: TaskManagementExample
|
|
|
|
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.
|
|
|
|
! Outstanding tasks
|
|
|
|
<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> <$link to={{!!title}}><$view field="title"/></$link></$checkbox>
|
|
|
|
</$list>
|
|
|
|
! Completed tasks
|
|
|
|
<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
|
|
|
|
<$checkbox tag="done"> ~~<$link to={{!!title}}><$view field="title"/></$link>~~</$checkbox>
|
|
|
|
</$list>
|