I apologize for the title gore, here is my issue step by step
I have a page with list of services, every service has an contact-person from team. This is how I managed the contact selection in service blueprint:
...
content-right:
width: 1/3
sections:
service_contact:
type: fields
fields:
contact:
label: Ansprechpartner
type: multiselect
options: query
query: site.index.filterBy('template', 'in', ['team-member'])
As you see, you can select team members from different page and template. That works well.
Now in frontend, I’d like to display the associated team members into corresponding service page. Team members have usual fields like name, phone, mail etc…
What would be the best practice to pull the content from another page into service page (and how)?