Hi,
I struggle to find a way to display a table whose content layout is condioned by tiddler field
For example a table like the one below. I would like to highlight in red the 'topic' field (<$view field="topic"/>) if the tiddler has a tag "done"
<table><tbody>
<tr>
<th>Date</th><th>Topic</th><th>Title</th>
</tr>
<$list filter="[tag[task]sort[topic]]">
<tr>
<td><$link><$view field="created" format="date" template="DD/0MM/YY"/></$link></td>
<td><$view field="topic"/></td>
<td><$view field="title"/></td>
</tr>
</$list></tbody></table>
I can't find anything that could help me ... but not a tiddlywiki expert
Thanks for your help
Regards
Vpl