Wednesday 25 February 2009 4:24:16 am
Thank you, but I do not realy know how to use it. In my case i have a object "download_group" which hast attribute object relations to a some objects of the class "file". First I go and fetch all related file objects
{def $relationlist =fetch('content','related_objects',
hash('object_id',$box.contentobject_id,'attribute_identifier',403 ))}
this works fine. And now, I want to loop the relationslist and each time output a downloadlink.
{foreach $relationlist as $relation}
{content_view_gui content_object=$relation.id view="download"}
{/foreach}
However there is no download output but also no error message. Do I have to create my own download template? And how? Thank you
|