So if I read you right. You want something like this:
1. Starts with a tag that identifies an item "item"
    a. If you want all tiddlers to be an item, Add this code

Add a tiddler as an item
<ul>
<$list filter="[all[tiddlers]] -[is[system]!has[tags]] -[tag[item]]" 
variable="none">
    <li><$checkbox tiddler=<<none>> tag="item"> <<none>></$checkbox></li>
</$list>
</ul>

2. Tags The item as "started" to put it on the started list
3. Tags The item as "inProgress" to put it on the In Progress list
4. Tags The item as "done" to put it on the Done list
5. If you uncheck a "done" item, it sends it back to InProgress

<ul>
   <li>Ready <ul>
      <$list filter="[tag[item]] -[tag[started]] -[tag[InProgress]] 
-[tag[done]]" variable="none">
         <li><$checkbox tiddler=<<none>> tag="started" >
               <<none>></$checkbox></li>
       </$list>
    </ul></li>
    <li>Started <ul>
      <$list filter="[tag[item]tag[started]] -[tag[InProgress]] 
-[tag[done]]" variable="none">
         <li><$checkbox tiddler=<<none>> tag="InProgress" >
               <<none>></$checkbox></li>
       </$list>
    </ul></li>
    <li>In Progress<ul>
      <$list filter="[tag[item]tag[InProgress]] -[tag[done]]" 
variable="none">
         <li><$checkbox tiddler=<<none>> tag="done" >
               <<none>></$checkbox></li>
       </$list>
    </ul></li>
    <li>Done <ul>
      <$list filter="[tag[item]tag[done]]" variable="none">
         <li><$checkbox tiddler=<<none>> tag="done" >
               <<none>></$checkbox></li>
       </$list>
    </ul></li>
</ul>

>

-- 
You received this message because you are subscribed to the Google Groups 
"TiddlyWiki" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to tiddlywiki+unsubscr...@googlegroups.com.
To post to this group, send email to tiddlywiki@googlegroups.com.
Visit this group at https://groups.google.com/group/tiddlywiki.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/tiddlywiki/963efa46-3ffc-4b09-b7c8-80e6194ed3fd%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to