Ignore:
Timestamp:
Feb 28, 2008, 3:41:48 AM (16 years ago)
Author:
rvelices
Message:
  • migrate many templates to smarty
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/template/yoga/admin/tabsheet.tpl

    r2222 r2223  
    1 <!-- DEV TAG: not smarty migrated -->
    2 <!-- $Id$ -->
     1{* $Id$ *}
     2{if isset($tabsheet) and count($tabsheet)}
    33<ul class="tabsheet">
    4 <!-- BEGIN tab -->
    5   <li class="{tab.CLASSNAME}"><a href="{tab.URL}">{tab.CAPTION}</a></li>
    6 <!-- END tab -->
     4{foreach from=$tabsheet item=tab}
     5  <li class="{if isset($tab.selected) and $tab.selected}selected_tab{else}normal_tab{/if}"><a href="{$tab.url}">{$tab.caption}</a></li>
     6{/foreach}
    77</ul>
     8{/if}
Note: See TracChangeset for help on using the changeset viewer.