Hey hey!
I have the following field inside a file blueprint:
testField:
type: select
options:
test1: First Test Entry
test2: Second Test Entry
test3: Third Test Entry
In a page blueprint I want to place this information like this:
info: "{{ file.testField }}"
Now Im getting “test1” but I want to get “First Test Entry“. How can I achieve that?
Thanks for any help!