Bernhard
Hi Bernhard,
I remember when I encounter the same problem, one year ago. I try to help you:
Yes, you have to create a new Detail view for list_items.
Because in the URL .../ca/pawtucket/index.php/Detail//246, something is missing between the "//" just before the "246" which is the id for the vocabulary term it should link.
But you need to add something also in your detail.conf file, in the detailTypes = { ... } section.
Add this, for example just before the objects = {...} part:
terms = {
displayName = _(Vocabulary),
table = ca_list_items,
restrictToTypes = [],
options = {
nextLink = <i class='fa fa-angle-right'></i><div class='small'>Next</div>,
previousLink = <i class='fa fa-angle-left'></i><div class='small'>Previous</div>,
resultsLink = <i class='fa fa-angle-double-left'></i><div class='small'>Back</div>,
enableComments = 0,
enableShare = 0,
}
},
Flush the cache (tmp) directory.
Now, you should have an URL like .../ca/pawtucket/index.php/Detail/terms/246 that points to your detail page.
(I hope there is no more things to add somewhere else.)
Regards,
Clovis.