summaryrefslogtreecommitdiff
path: root/templates
diff options
context:
space:
mode:
authorspiderr <spiderr@bitweaver.org>2020-11-12 00:20:57 -0500
committerspiderr <spiderr@bitweaver.org>2020-11-12 00:20:57 -0500
commit1f3e59e1af9656b25e53f48b15ded26894092e99 (patch)
treeb59fec3971e954e54f8fae8fabab05f5342d7c8b /templates
parenta8eda5c8f5e0696f391b9da7bd10f89d98b92cdc (diff)
downloadboards-1f3e59e1af9656b25e53f48b15ded26894092e99.tar.gz
boards-1f3e59e1af9656b25e53f48b15ded26894092e99.tar.bz2
boards-1f3e59e1af9656b25e53f48b15ded26894092e99.zip
tidy css classes in admin
Diffstat (limited to 'templates')
-rw-r--r--templates/admin_boards.tpl18
1 files changed, 9 insertions, 9 deletions
diff --git a/templates/admin_boards.tpl b/templates/admin_boards.tpl
index 33f72ec..c6f3ca8 100644
--- a/templates/admin_boards.tpl
+++ b/templates/admin_boards.tpl
@@ -26,7 +26,7 @@
{foreach from=$formBitBoardsLists key=item item=output}
<div class="form-group">
{formlabel label=$output.label for=$item}
- {forminput}
+ {forminput label="checkbox"}
{html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item}
{formhelp note=$output.note page=$output.page}
{/forminput}
@@ -45,7 +45,7 @@
<div class="form-group">
{formlabel label=$output.label for=$item}
{forminput}
- <input type="text" name="{$item}" value="{$gBitSystem->getConfig($item)}" id={$item}" />
+ <input type="text" class="form-control" name="{$item}" value="{$gBitSystem->getConfig($item)}" id={$item}" />
{formhelp note=$output.note page=$output.page}
{/forminput}
</div>
@@ -67,7 +67,7 @@
{foreach from=$formGroupEmailList key=item item=output}
<div class="form-group">
{formlabel label=$output.label for=$item}
- {forminput}
+ {forminput label="checkbox"}
{html_checkboxes name="$item" values="y" checked=$gBitSystem->getConfig($item) labels=false id=$item}
{formhelp note=$output.note page=$output.page}
{/forminput}
@@ -77,14 +77,14 @@
<div class="form-group">
{formlabel label="Email Host" for='boards_email_host'}
{forminput}
- <input type="text" name="boards_email_host" value="{$gBitSystem->getConfig('boards_email_host',$gBitSystem->getConfig('kernel_server_name'))}" />
+ <input type="text" class="form-control" name="boards_email_host" value="{$gBitSystem->getConfig('boards_email_host',$gBitSystem->getConfig('kernel_server_name'))}" />
{formhelp note="Enter the host name to which all mailing lists will be hosted and addressed."}
{/forminput}
</div>
<div class="form-group">
{formlabel label="Administrator Email" for='boards_email_admin'}
{forminput}
- <input type="text" name="boards_email_admin" value="{$gBitSystem->getConfig('boards_email_admin',$gBitSystem->getConfig('site_sender_email'))}" />
+ <input type="text" class="form-control" name="boards_email_admin" value="{$gBitSystem->getConfig('boards_email_admin',$gBitSystem->getConfig('site_sender_email'))}" />
{formhelp note="This is the email for the master administrator for all mailing lists."}
{/forminput}
</div>
@@ -92,7 +92,7 @@
<div class="form-group">
{formlabel label="Mailman bin Path" for='server_mailman_bin'}
{forminput}
- <input type="text" name="server_mailman_bin" value="{$gBitSystem->getConfig('server_mailman_bin')|escape}" />
+ <input type="text" class="form-control" name="server_mailman_bin" value="{$gBitSystem->getConfig('server_mailman_bin')|escape}" />
{formhelp note="Path to mailman applications, typically: /usr/lib/mailman/bin/"}
{if !$gBitSystem->getConfig('server_mailman_bin')}
{formfeedback error="This setting is required to use mailing lists."}
@@ -102,21 +102,21 @@
<div class="form-group">
{formlabel label="Mailman Command Path" for='mailman_cmd'}
{forminput}
- <input type="text" name="server_mailman_cmd" value="{$gBitSystem->getConfig('server_mailman_cmd', '/usr/lib/mailman/mail/mailman')|escape}" />
+ <input type="text" class="form-control" name="server_mailman_cmd" value="{$gBitSystem->getConfig('server_mailman_cmd', '/usr/lib/mailman/mail/mailman')|escape}" />
{formhelp note="Path to mailman binary, typically: /usr/lib/mailman/mail/mailman"}
{/forminput}
</div>
<div class="form-group">
{formlabel label="Newaliases command" for='server_newaliases_cmd'}
{forminput}
- <input type="text" name="server_newaliases_cmd" value="{$gBitSystem->getConfig('server_newaliases_cmd', '/usr/bin/newaliases')|escape}" />
+ <input type="text" class="form-control" name="server_newaliases_cmd" value="{$gBitSystem->getConfig('server_newaliases_cmd', '/usr/bin/newaliases')|escape}" />
{formhelp note="Path to the command to tell the mail server to reload the aliases file. For sendmail typically: /usr/bin/newaliases"}
{/forminput}
</div>
<div class="form-group">
{formlabel label="MTA Aliases Map" for='server_aliases_file'}
{forminput}
- <input type="text" name="server_aliases_file" value="{$gBitSystem->getConfig('server_aliases_file', '/etc/aliases')|escape}" />
+ <input type="text" class="form-control" name="server_aliases_file" value="{$gBitSystem->getConfig('server_aliases_file', '/etc/aliases')|escape}" />
{formhelp note="Path to the command to tell the mail server to reload the aliases file. For sendmail typically: /usr/bin/newaliases"}
{/forminput}
</div>