4621be1005
Use class for tabsheet like grum class Change way for tabsheet git-svn-id: http://piwigo.org/svn/trunk@2226 68402e56-0260-453c-a942-63ccdbb3a9ee
8 lines
No EOL
274 B
Smarty
8 lines
No EOL
274 B
Smarty
{* $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}"><a href="{$sheet.url}">{$sheet.caption}</a></li>
|
|
{/foreach}
|
|
</ul>
|
|
{/if} |