aboutsummaryrefslogtreecommitdiffstats
path: root/admin/themes/default/template/tabsheet.tpl
blob: 00b3f3c549e086bc83a9d3fe5fd3c0a0e762b79e (plain)
1
2
3
4
5
6
7
8
9
{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}">
    <a href="{$sheet.url}"><span>{$sheet.caption}</span></a>
  </li>
{/foreach}
</ul>
{/if}