All,
Having difficulty getting liquid to render on a page. After much work/research/attempts. it must be a permissions issue.
I've set the table permissions for both anonymous = Read and Auth/Admin = Full
Here is a test example. This code is in a web template called "accountFetch-web-template";
***************************
{% fetchxml accounts %}
<fetch top="5">
<entity name="account">
<attribute name="name" />
<attribute name="accountid" />
</entity>
</fetch>
{% endfetchxml %}
<p>Number of records returned: {{ accounts.results.size }}</p>
***************************
It is called from a web page with {% include 'accountFetch-web-template' %}
But nothing is displayed.
Any ideas on how to get liquid to show would be greatly appreciated.
Doug