I am creating a template with custom page creation forms. on Page B I currently have a textbox where the user types the name of their institution and then a drop down where they can select a logo for the institution.
PAGE B:
.logo:
type: filepicker
folder: 'user/pages/01.home/04._affiliates/'
label: Select a logo for the institution
preview_images: true
accept:
- .svg
These logos are on another page uploaded in the header.media_order
However, on Page A I have custom fields with the following format:
Ideally, I would like a single dropdown on Page B where a user can choose an institution from the header.associations
on the user/pages/01.home/04._affiliates/
page (Page A) and from there be able to access the name and SVG logo in Page B's twig template.
SelectUnique provides a dropdown box, but there is little to no documentation on it, so I don't know if it is possible to get access to such data. Is this even possible?