mirror of
https://github.com/TiddlyWiki/TiddlyWiki5.git
synced 2026-02-01 22:07:41 +00:00
* [DOCS] Make TaskManagementExamples more "hackable" * Update modified date in TaskManagementExample.tid * Fix modified date in TaskManagementExampleDraggable
26 lines
948 B
Plaintext
26 lines
948 B
Plaintext
created: 20130825213300000
|
|
modified: 20180307153530187
|
|
tags: Learning
|
|
title: TaskManagementExample
|
|
type: text/vnd.tiddlywiki
|
|
|
|
TiddlyWiki5 can be used as a simple task management system without further customisation.<br>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.
|
|
|
|
<<.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.""">>
|
|
|
|
! Outstanding tasks
|
|
|
|
<$macrocall $name='wikitext-example-without-html'
|
|
src="""<$list filter="[!has[draft.of]tag[task]!tag[done]sort[created]]">
|
|
<$checkbox tag="done"> <$link/></$checkbox><br>
|
|
</$list>
|
|
"""/>
|
|
|
|
! Completed tasks
|
|
|
|
<$macrocall $name='wikitext-example-without-html'
|
|
src="""<$list filter="[!has[draft.of]tag[task]tag[done]sort[created]]">
|
|
<$checkbox tag="done"> ~~<$link/>~~</$checkbox><br>
|
|
</$list>
|
|
"""/>
|