Fix features checkboxes at admin settings page

This commit is contained in:
Dmitriy Zaporozhets 2015-03-10 12:59:39 -07:00
parent c572bdb587
commit ea7478d6b5
1 changed files with 21 additions and 13 deletions

View File

@ -8,22 +8,30 @@
%fieldset %fieldset
%legend Features %legend Features
.form-group .form-group
= f.label :signup_enabled, class: 'control-label col-sm-2' .col-sm-offset-2.col-sm-10
.col-sm-10 .checkbox
= f.check_box :signup_enabled, class: 'checkbox form-control' = f.label :signup_enabled do
= f.check_box :signup_enabled
Signin enabled
.form-group .form-group
= f.label :signin_enabled, class: 'control-label col-sm-2' .col-sm-offset-2.col-sm-10
.col-sm-10 .checkbox
= f.check_box :signin_enabled, class: 'checkbox form-control' = f.label :signin_enabled do
= f.check_box :signin_enabled
Signup enabled
.form-group .form-group
= f.label :gravatar_enabled, class: 'control-label col-sm-2' .col-sm-offset-2.col-sm-10
.col-sm-10 .checkbox
= f.check_box :gravatar_enabled, class: 'checkbox form-control' = f.label :gravatar_enabled do
= f.check_box :gravatar_enabled
Gravatar enabled
.form-group .form-group
= f.label :twitter_sharing_enabled, "Twitter enabled", class: 'control-label col-sm-2' .col-sm-offset-2.col-sm-10
.col-sm-10 .checkbox
= f.check_box :twitter_sharing_enabled, class: 'checkbox form-control', :'aria-describedby' => 'twitter_help_block' = f.label :twitter_sharing_enabled do
%span.help-block#twitter_help_block Show users a button to share their newly created public or internal projects on twitter = f.check_box :twitter_sharing_enabled, :'aria-describedby' => 'twitter_help_block'
%strong Twitter enabled
%span.help-block#twitter_help_block Show users a button to share their newly created public or internal projects on twitter
%fieldset %fieldset
%legend Misc %legend Misc
.form-group .form-group