<table>
<tr>
<th>author</th>
<th>quote</th>
<th>tags</th>
</tr>
<$list filter="[tag[quote]sort[author]]">
<tr>
<td><$view field="author"/></td>
<td><$view field="quote"/></td>
<td>
<$list filter="[all[current]tags[]!title[quote]]" template="$:/core/ui/TagTemplate"/>
</td>
</tr>
</$list>
</table>Thanks Mark. Unfortunately nothing shows up in the table cell. Any ideas?{{||$:/core/ui/TagTemplate}} will show a tag pill of the currentTiddler which changes inside list widgets if you do not use variable=variablename.
Or do you mean something else?
Tony
<table>
<tr>
<th>author</th>
<th>quote</th>
<th>tags</th>
</tr>
<$list filter="[tag[quote]sort[author]]">
<tr>
<td><$view field="author"/></td>
<td><$view field="quote"/></td>
<td>
<$list filter="[tag[quote]tags[]]-[[quote]]">
<$transclude tiddler="$:/core/ui/TagTemplate"/>
</$list>
</td>
</tr>
</$list>
</table>
Yeah, removing "!tag[quote]" makes it work now. Unfortunately by clicking on one pill, all pills with the same text open at once. That is a pretty mess, but seems to be the way these pills work. Is there another solution when clicking on a tag, that the entries for that tag show up once?
<table>
<tr>
<th>author</th>
<th>quote</th>
<th>tags</th>
</tr>
<$list filter="[tag[quote]sort[author]]" template="Table of Quotes template">
</$list>
</table><tr><td><$view field="author"/></td>
<td><$view field="quote"/></td>
<td> <$list filter="[all[current]tags[]!title[quote]]" template="$:/core/ui/TagTemplate"/>
</td>
</tr>