On a parent page I am using the pagetable plugin from @sylvainjule.
I would like to get the value of its children’s pages
field. Currently I can get the URI, but I would prefer to get the Title of the page selected in the pages
field.
On the parent page I have this:
sections:
mypagetable:
headline: Artworks
type: pagetable
templates: artwork
columns:
artist:
label: Artist
text: '{{ page.artist}}'
On the child pages I have:
artist:
type: pages
query: site.children.filterBy('intendedTemplate', 'database').children.template('artists').children.template('artist')
Is this possible at all?