Hey, All :)
Is it possible to return a specific value depending on the tags attached to tiddlers?
I'd like the value "Tam" to show up in a table if the tag is "T", "Kaye" if it's "K" and "Jason" if it's "J".
At the moment, I have this:
<table>
<th>Assigned</th><th>Task</th><th>Status</th>
<$list filter="[tag[J]]">
<tr><td></td><td><<currentTiddler>></td><td></td></tr>
</$list>
<$list filter="[tag[K]]">
<tr><td></td><td><<currentTiddler>></td><td></td></tr>
</$list>
</table>
I'd like the first column of the table to pull through Tam, Jason or Kaye but I have no idea as to where to start...?
Thanks for any pointers,
-S