I am trying to update my custom book list template to show if a book has the Completed tag or not.
{tags} works fine, but I'm not interested in seeing the whole string, especially as it make take multiple lines.
I have tried
Code:
{str_in_list(field('tags'),',','Completed','Incomplete')}
and
Code:
{contains(field('tags'),'Completed','Completed','Incomplete')}
and nothing is appearing in the generated output. I have also inserted 'program:' inside the first bracket with the same non-results.
What nuance am I missing here?