summaryrefslogtreecommitdiff
path: root/templates/admin_ckeditor.tpl
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin_ckeditor.tpl')
-rw-r--r--templates/admin_ckeditor.tpl27
1 files changed, 12 insertions, 15 deletions
diff --git a/templates/admin_ckeditor.tpl b/templates/admin_ckeditor.tpl
index e52e7ee..e3a0675 100644
--- a/templates/admin_ckeditor.tpl
+++ b/templates/admin_ckeditor.tpl
@@ -1,42 +1,39 @@
{strip}
{form}
{legend legend="General Settings"}
- <div class="row">
+ <div class="form-group">
{foreach from=$formCkeditorFeatures key=item item=output}
- <div class="row">
- {formlabel label=`$output.label` for=$item}
- {forminput}
- {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item}
- {formhelp note=`$output.note` page=`$output.page`}
+ <div class="form-group">
+ {forminput label="checkbox"}
+ {html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item} {tr}{$output.label}{/tr}
+ {formhelp note=$output.note page=$output.page}
{/forminput}
</div>
{/foreach}
</div>
{foreach from=$formToolbars key=item item=output}
- <div class="row">
- {formlabel label=`$output.label` for=$item}
+ <div class="form-group">
+ {formlabel label=$output.label for=$item}
{forminput}
{html_options values=$formToolbarChoices output=$formToolbarChoices selected=$gBitSystem->getConfig($item) name=$item}
- {formhelp note=`$output.note`}
+ {formhelp note=$output.note}
{/forminput}
</div>
{/foreach}
{foreach from=$formSkin key=item item=output}
- <div class="row">
- {formlabel label=`$output.label` for=$item}
+ <div class="form-group">
+ {formlabel label=$output.label for=$item}
{forminput}
{html_options values=$formSkinChoices output=$formSkinChoices selected=$gBitSystem->getConfig($item) name=$item}
- {formhelp note=`$output.note`}
+ {formhelp note=$output.note}
{/forminput}
</div>
{/foreach}
- <div class="row submit">
<input type="hidden" name="page" value="{$page}" />
- <input type="submit" name="change_prefs" value="{tr}Change preferences{/tr}" />
- </div>
+ <input type="submit" class="btn btn-default" name="change_prefs" value="{tr}Change preferences{/tr}" />
{/legend}
{/form}
{/strip}