aboutsummaryrefslogtreecommitdiffstats
path: root/admin/template/yoga/admin/tabsheet.tpl
blob: d9968f0b921f358afb67d2c0705bf0eef84beac8 (plain)
1
2
3
4
5
6
7
8
9
10
{* $Id$ *}
{if isset($tabsheet) and count($tabsheet)}
<ul class="tabsheet">
{foreach from=$tabsheet key=name item=sheet}
  <li class="{if ($name == $tabsheet_selected)}selected_tab{else}normal_tab{/if} png">
    <a href="{$sheet.url}"><span class="png">{$sheet.caption}</span></a>
  </li>
{/foreach}
</ul>
{/if}