Quote:
Originally Posted by Ozric
2. In calibre, I would like to have something like a Read? column where I can make a check mark on books I've read. If I send books marked as Read to my Sony, I'd like caliber to automatically populate a new set of Collections that separate the read and unread books. I think it might be possible to use the template language to check if Read? is true, and if it is, use a SONY renaming rule to append (Read) to the genre-based Collection name, creating a new Collection for read books. If something along these lines is possible, would someone mind explaining how to set this up?
|
You can do this by creating a composite custom column that combines #genre and #read into a single value, then creating collections from this new column instead of from #genre. For example, the template for the composite column could be
Code:
{#genre:ifempty(Unknown)} ({#read:switch(yes,Read,Unread)})