Commit faa08fe6 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch '76-admin-group-edit' into 'master'

Fix group edit in admin area

Fixes #76

Strangly, the buttons were pushed out of the form. By including them in the fieldset of the second part of form, the layout doesn't change, but the buttons are nested within the form and are functional again.
parents e106640e d4a7036b
...@@ -30,26 +30,25 @@ ...@@ -30,26 +30,25 @@
%fieldset %fieldset
%legend LDAP group settings %legend LDAP group settings
%div.form-holder %div.form-holder
= form_for @group do |f| .form-group.clearfix
.form-group.clearfix = f.label :ldap_cn, class: 'control-label' do
= f.label :ldap_cn, class: 'control-label' do LDAP Group cn
LDAP Group cn .col-sm-10
.col-sm-10 = f.hidden_field :ldap_cn, placeholder: "Ex. QA group", class: "xxlarge ajax-ldap-groups-select input-mn-300"
= f.hidden_field :ldap_cn, placeholder: "Ex. QA group", class: "xxlarge ajax-ldap-groups-select input-mn-300" .help-block
.help-block Synchronize #{@group.name}'s members with this LDAP group.
Synchronize #{@group.name}'s members with this LDAP group. %br
%br If you select an LDAP group you do not belong to you will lose ownership of #{@group.name}.
If you select an LDAP group you do not belong to you will lose ownership of #{@group.name}.
.form-group.clearfix .form-group.clearfix
= f.label :ldap_access, class: 'control-label' do = f.label :ldap_access, class: 'control-label' do
LDAP Access LDAP Access
.col-sm-10 .col-sm-10
= f.select :ldap_access, options_for_select(UsersGroup.group_access_roles, @group.ldap_access) = f.select :ldap_access, options_for_select(UsersGroup.group_access_roles, @group.ldap_access)
.help-block .help-block
Default, minimum permission level for LDAP group members of #{@group.name}. Default, minimum permission level for LDAP group members of #{@group.name}.
%br %br
You can manage permission levels for individual group members in the Members tab. You can manage permission levels for individual group members in the Members tab.
.form-actions .form-actions
= f.submit 'Save changes', class: "btn btn-primary" = f.submit 'Save changes', class: "btn btn-primary"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment