diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-03-29 08:53:33 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-03-29 08:53:33 +0000 |
| commit | e928f8dd9b257bba2d6bea6e5eb19643858daad2 (patch) | |
| tree | 3a308a49bd2daea281af52d29952b07cb921ffc3 /templates/admin_themes_menus.tpl | |
| parent | 992265c194941f624bd51a74c43680a4be3efd0d (diff) | |
| download | themes-e928f8dd9b257bba2d6bea6e5eb19643858daad2.tar.gz themes-e928f8dd9b257bba2d6bea6e5eb19643858daad2.tar.bz2 themes-e928f8dd9b257bba2d6bea6e5eb19643858daad2.zip | |
simplify tpl a bit and add <label>
Diffstat (limited to 'templates/admin_themes_menus.tpl')
| -rw-r--r-- | templates/admin_themes_menus.tpl | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/templates/admin_themes_menus.tpl b/templates/admin_themes_menus.tpl index d6c8635..1a776ce 100644 --- a/templates/admin_themes_menus.tpl +++ b/templates/admin_themes_menus.tpl @@ -11,11 +11,9 @@ <div class="row"> {formlabel label="Package Menus" for=""} {forminput} - <ul class="data"> - {foreach from=$gBitSystem->mAppMenu key=pkgName item=menu} - <li class="item"><input type="checkbox" name="menu_{$pkgName}" {if $gBitSystem->getConfig("menu_`$pkgName`",'y')=='y'}checked="checked"{/if}/>{$menu.title|escape}</li> - {/foreach} - </ul> + {foreach from=$gBitSystem->mAppMenu key=pkgName item=menu} + <label><input type="checkbox" name="menu_{$pkgName}" {if $gBitSystem->getConfig("menu_`$pkgName`",'y')=='y'}checked="checked"{/if}/> {$menu.title|escape}</label><br /> + {/foreach} {/forminput} </div> |
