mirror of
https://github.com/Piwigo/Piwigo.git
synced 2026-05-14 13:26:01 +02:00
01fdeb9501
useless block on the right side of admin tab in Google Chrome git-svn-id: http://piwigo.org/svn/branches/2.2@11394 68402e56-0260-453c-a942-63ccdbb3a9ee
11 lines
311 B
Smarty
11 lines
311 B
Smarty
{if isset($tabsheet) and count($tabsheet)}
|
|
<div id="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>
|
|
</div>
|
|
{/if} |