Quote:
Originally Posted by dunhill
If in the library column it says Cúspide In another column it would have to show me only the identifier of cuspide
If in the library column it says Amazon In another column it would have to show me only the amazon identifier
I thought that essentially what the ownbycats template did could help me, if you can guide me in this regard, I would be very grateful
|
I do something simillar for my links column. Here's something similar, but with urls_from_identifiers:
Code:
program:
list_join(
', ',
## Fanfics
if $publisher=='Fanfiction.net' then urls_from_identifiers('ffnet:' & select($identifiers, 'ffnet'), 0) fi, ', ',
if $publisher=='Archive of Our Own' then urls_from_identifiers('ao3:' & select($identifiers, 'ao3'), 0) fi, ',',
)
You can probably ignore the list_join() bit. Also, if your column is a tag-like, you'll need to use
'Something' inlist $#whatever instead.