1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-06 20:14:22 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExample.tid

26 lines
815 B
Plaintext
Raw Normal View History

2014-09-12 15:05:37 +00:00
created: 20130825213300000
2018-03-07 15:52:58 +00:00
modified: 20180307153530187
2014-09-19 16:18:25 +00:00
tags: Learning
2012-11-30 09:22:17 +00:00
title: TaskManagementExample
2014-09-12 15:05:37 +00:00
type: text/vnd.tiddlywiki
2012-11-30 09:22:17 +00:00
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.
2018-03-07 15:52:58 +00:00
<<.tip """There is [[an enhanced version of this demo|TaskManagementExample (Draggable)]] that adds the ability to drag and drop the tasks to re-order them.""">>
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/></$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/>~~</$checkbox>
2012-12-13 21:30:50 +00:00
2013-01-18 09:33:16 +00:00
</$list>