Quote:
Originally Posted by BetterRed
Decorating a category cell that that has notes attached to the applied items with a colour or icon might be useful - more so for single item categories such as Publisher and Series than multi-item categories such as Tags. This is not a request that it be implemented.
BR
|
The above template can be used for this by checking if the lookup column in question is in the list. Something like this, where the above template is stored as notes_in_book.
Code:
program:
keys = notes_in_book()
if '^publisher$' inlist keys then icon='whatever.jpg' else icon='' fi;
icon
Alternatively, and faster, would be to modify the python template to take an argument (a lookup name) and check if it is in the list.