diff options
| author | Max Kremmel <xing@synapse.plus.com> | 2006-09-10 21:16:39 +0000 |
|---|---|---|
| committer | Max Kremmel <xing@synapse.plus.com> | 2006-09-10 21:16:39 +0000 |
| commit | 2f5f99e0b32f042aba7bd6b540ffef84230e7d03 (patch) | |
| tree | 06fa7b90f74e737d35ab46c946443c497d309ca3 /templates/admin_themes.tpl | |
| parent | d64452c57ba2163ac454a3259e3ae9f8959abed1 (diff) | |
| download | themes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.tar.gz themes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.tar.bz2 themes-2f5f99e0b32f042aba7bd6b540ffef84230e7d03.zip | |
clean up, move around and consolidate tonnes of crappy and complicated core admin pages
Diffstat (limited to 'templates/admin_themes.tpl')
| -rw-r--r-- | templates/admin_themes.tpl | 27 |
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} |
