Hello!
I have a need to display data in the Copy(HTML) of a Web Page. For example:
I have an entity list that provides a list of Accounts. The user opens a details web page which displays an entity form. I would like to display Account information within the Copy (HTML) of that page. I am reading that this should be possible using Liquid, but am unable to make this happen.
Within the Copy (HTML) of the Web Page content record, I've added the following:
{% assign account = entities['account'][request.params.id] %}
Account Name: {{account.name}}
Created On : {{account.createdon}}
Last Modified: {{account.modifiedby}}
Modified By: {{account.modifiedby}}
Record ID: {{request.params.id}}
When the page is rendered, the labels are displayed, but no values with the exception of the Record ID, both label and data are displayed.
Should I be able to pull values from the Dynamics 365 record using Liquid?
Thank you
Tom