I have a custom blueprint that allows the user to create content in the backend with a <select /> I followed this guide, but how do I get the value created in the blueprint without reimplementing in my template?
e.g., given
options:
default: PLUGIN_ADMIN.DEFAULT_ORDERING_DEFAULT
folder: PLUGIN_ADMIN.DEFAULT_ORDERING_FOLDER
title: PLUGIN_ADMIN.DEFAULT_ORDERING_TITLE
date: PLUGIN_ADMIN.DEFAULT_ORDERING_DATE
I only get "default" or "folder" where I would want "PLUGIN_ADMIN.DEFAULT_ORDERING_DEFAULT", "PLUGIN_ADMIN.DEFAULT_ORDERING_FOLDER" when calling the variable in my template. in the grav admin it shows the display text, so how can I pull this info from the blueprint in my template?