I get the tree in symfony with propel with this way:
$tree = FoldersQuery::create()->findTree();
Now, how to list the tree with each child properly? I want parents be on a specific div, children on an another div and list them. But how? How to get the relationships between each item and know how to render it?
Thanks a lot.