1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-07-07 04:24:22 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/demonstrations/Tasks/TaskManagementExampleDraggable.tid

24 lines
695 B
Plaintext
Raw Normal View History

2018-03-07 15:52:58 +00:00
created: 20180307153530187
modified: 20180307153530187
tags: Learning
title: TaskManagementExample (Draggable)
type: text/vnd.tiddlywiki
2020-04-14 21:02:40 +00:00
This is a version of the TaskManagementExample enhanced with the ability to drag and drop the task list to re-order them.
2018-03-07 15:52:58 +00:00
! Outstanding tasks
//Drag the tasks to re-order them//
<<list-tagged-draggable tag:"task" subFilter:"!has[draft.of]!tag[done]" itemTemplate:"TaskManagementExampleDraggableTemplate" emptyMessage:"You don't have any active tasks">>
! Completed tasks
//(Listed in reverse order of completion)//
<$list filter="[!has[draft.of]tag[task]tag[done]sort[modified]]">
2018-03-07 15:52:58 +00:00
<div>
<$checkbox tag="done"> ~~<$link/>~~</$checkbox>
2018-03-07 15:52:58 +00:00
</div>
</$list>