Thursday 22 May 2008 2:44:10 pm
As a newbe I just started with related objects. I added some object relation attributes (single relation) to a content class. Trying to fetch different atrributes works in this code:
{if $node.data_map.item_4.has_content}
<h4><a href="WHAT TO INSERT TO GET THE URL OF THE RELATED OBJECT?">
<strong>{attribute_view_gui
attribute=$node.object.data_map.item_4.content.data_map.title}
</strong>
<span>{attribute_view_gui
attribute=$node.object.data_map.item_4.content.data_map.sub_title}
</span></a></h4>
<p>
{attribute_view_gui
attribute=$node.object.data_map.item_4.content.data_map.intro}
</p>
{/if}
Somehow I am not able to fetch the url of the related object. What do I need to insert to get the url? Thanks for helping!
|