You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

30 lines
973 B

{extends "layout_view.tpl"}
{block name="title"}
{title}{$title}{/title}
{/block}
{block name="content"}
{tabset}
{foreach $recommendations as $set}
{tab name=$set->getEngine()}
<ol>
{foreach $set as $rec}
<li>
{object_link type=$rec->getType() id=$rec->getId() title=$rec->getTitle()}
</li>
{/foreach}
</ol>
{remarksbox type=info title="{tr}Debug Information{/tr}"}
<ul>
{foreach $set->getDebug() as $info}
<li>{$info}</li>
{foreachelse}
<li>{tr}Engine does not provide any debug information{/tr}</li>
{/foreach}
</ul>
{/remarksbox}
{/tab}
{/foreach}
{/tabset}
{/block}