Friday 02 September 2005 5:27:00 am
is it possible to fetch elements of an other fetch, like this?
{let nodes=fetch( 'content', 'list', hash( 'parent_node_id', 250 )) }
{section loop=$nodes}
{$item.name}
{let children=$item.node_id}
{let nodechildren=fetch( 'content', 'list', hash( 'parent_node_id', $children )) }
{section loop=$nodechildren}
{$item.name}<br />
{/section}{/let}{/let}
<br />
{/section}<P>{/let}{/let}
(this code doesnt display children's nodes...)
|