File: D:/web/itpartnership.net (cms)/admin/templates/ordercontent_tree.tpl
<ul class="sortableList {if $depth==1}sortable{/if}">
{foreach from=$list item='child'}
{strip}
{assign var='obj' value=$child->getContent()}
<li id="page_{$obj->Id()}"><div class="label"><span> </span>{$obj->Hierarchy()}: {$obj->Name()} <em>({$obj->MenuText()})</em></div>
{if $child->has_children()}
{include file="ordercontent_tree.tpl" list=$child->getChildren() depth=$depth+1 tree=''}
{/if}
</li>
{/strip}
{/foreach}
</ul>