summaryrefslogtreecommitdiff
path: root/templates/admin_themes_menus.tpl
diff options
context:
space:
mode:
authorMax Kremmel <xing@synapse.plus.com>2006-03-29 08:53:33 +0000
committerMax Kremmel <xing@synapse.plus.com>2006-03-29 08:53:33 +0000
commite928f8dd9b257bba2d6bea6e5eb19643858daad2 (patch)
tree3a308a49bd2daea281af52d29952b07cb921ffc3 /templates/admin_themes_menus.tpl
parent992265c194941f624bd51a74c43680a4be3efd0d (diff)
downloadthemes-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.tpl8
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>