2013-06-17 23:39:22 +02:00
|
|
|
{include file='ls:top.tpl'}
|
2018-06-11 11:50:17 +02:00
|
|
|
{if $pagetitle != ''}<h1 id='LSview_title'>{$pagetitle|escape:"htmlall"}</h1>{/if}
|
2008-02-12 18:59:44 +01:00
|
|
|
{if $LSview_actions != ''}
|
2008-07-05 22:28:49 +02:00
|
|
|
<ul class='LSview-actions'>
|
2008-02-12 18:59:44 +01:00
|
|
|
{foreach from=$LSview_actions item=item}
|
2008-12-15 13:44:04 +01:00
|
|
|
{if is_array($item)}
|
2020-05-04 14:25:11 +02:00
|
|
|
<li class='LSview-actions'>
|
|
|
|
<a
|
|
|
|
href='{$item.url}'
|
|
|
|
class='
|
|
|
|
LSview-actions
|
|
|
|
{if isset($item['class'])}{$item.class|escape:"quotes"}{/if}
|
|
|
|
{if isset($item['helpInfo']) || (isset($item['hideLabel']) && $item.hideLabel && isset($item.label) && $item.label)} LStips{/if}
|
|
|
|
'
|
|
|
|
{if isset($item['helpInfo']) || (isset($item['hideLabel']) && $item.hideLabel && isset($item.label) && $item.label)}title='{if $item.helpInfo}{$item.helpInfo|escape:"htmlall"}{else}{$item.label|escape:"htmlall"}{/if}'{/if}
|
|
|
|
>
|
|
|
|
<img src="{img name=$item.action}" alt='{$item.label|escape:"htmlall"}' title='{$item.label|escape:"htmlall"}' />
|
|
|
|
{if !isset($item.hideLabel) || !$item.hideLabel} {$item.label}{/if}
|
|
|
|
</a>
|
|
|
|
</li>
|
2008-12-15 13:44:04 +01:00
|
|
|
{/if}
|
2008-02-12 18:59:44 +01:00
|
|
|
{/foreach}
|
2008-07-05 22:28:49 +02:00
|
|
|
</ul>
|
2008-02-12 18:59:44 +01:00
|
|
|
{/if}
|
2020-05-04 11:53:12 +02:00
|
|
|
|
2013-06-17 23:39:22 +02:00
|
|
|
{include file='ls:LSform_view.tpl'}
|
2020-05-04 11:53:12 +02:00
|
|
|
|
|
|
|
{if isset($LSrelations) && $LSrelations}
|
2008-02-26 18:40:05 +01:00
|
|
|
{foreach from=$LSrelations item=item}
|
2013-06-17 23:39:22 +02:00
|
|
|
{include file='ls:LSrelations.tpl'}
|
2008-02-26 18:40:05 +01:00
|
|
|
{/foreach}
|
|
|
|
{/if}
|
2013-06-17 23:39:22 +02:00
|
|
|
{include file='ls:bottom.tpl'}
|