I would like to display a list of images (ids) located in a folder
and which property State equals to 'private'
Here is the code I wrote :
<dtml-in
expr="objectIds(['Image'])">
<dtml-if
"_['sequence-item'].getProperty('State')='private'">
<dtml-var sequence-item><br>
</dtml-if>
</dtml-in>
Zope generate the next error :
Error Type: AttributeError
Error Value: getProperty
If somebody can help me ?
Thanks
GARCIA William