summaryrefslogtreecommitdiff
path: root/templates/admin_themes.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin_themes.tpl')
-rw-r--r--templates/admin_themes.tpl27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/admin_themes.tpl b/templates/admin_themes.tpl
new file mode 100644
index 0000000..ed110aa
--- /dev/null
+++ b/templates/admin_themes.tpl
@@ -0,0 +1,27 @@
+{* $Header: /cvsroot/bitweaver/_bit_themes/templates/admin_themes.tpl,v 1.1 2006/09/10 21:16:39 squareing Exp $ *}
+{strip}
+{form legend="Theme Settings"}
+ <input type="hidden" name="page" value="{$page}" />
+ <div class="row">
+ {formlabel label="Display action links as" for="site_biticon_display_style"}
+ {forminput}
+ {html_options name="site_biticon_display_style" id="site_biticon_display_style" options=$biticon_display_options selected=$gBitSystem->mConfig.site_biticon_display_style}
+ {formhelp note="Changing this setting will modify the way all action icons are displayed on your site. Icons in menus are not affected."}
+ {/forminput}
+ </div>
+
+ {foreach from=$themeSettings key=feature item=output}
+ <div class="row">
+ {formlabel label=`$output.label` for=$feature}
+ {forminput}
+ {html_checkboxes name="$feature" values="y" checked=$gBitSystem->getConfig($feature) labels=false id=$feature}
+ {formhelp note=`$output.note` page=`$output.page`}
+ {/forminput}
+ </div>
+ {/foreach}
+
+ <div class="row submit">
+ <input type="submit" name="change_prefs" value="{tr}Apply Settings{/tr}" />
+ </div>
+{/form}
+{/strip}