2018-05-28 08:58:39 -04:00
|
|
|
= form_for @group, html: { multipart: true, class: 'gl-show-field-errors' }, authenticity_token: true do |f|
|
|
|
|
= form_errors(@group)
|
|
|
|
|
|
|
|
%fieldset
|
|
|
|
= render 'shared/visibility_level', f: f, visibility_level: @group.visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group
|
|
|
|
|
|
|
|
.form-group.row
|
|
|
|
.offset-sm-2.col-sm-10
|
|
|
|
= render 'shared/allow_request_access', form: f
|
|
|
|
|
|
|
|
.form-group.row
|
|
|
|
%label.col-form-label.col-sm-2
|
|
|
|
= s_('GroupSettings|Share with group lock')
|
|
|
|
.col-sm-10
|
|
|
|
.form-check
|
|
|
|
= f.label :share_with_group_lock do
|
|
|
|
= f.check_box :share_with_group_lock, disabled: !can_change_share_with_group_lock?(@group)
|
|
|
|
%strong
|
|
|
|
- group_link = link_to @group.name, group_path(@group)
|
|
|
|
= s_('GroupSettings|Prevent sharing a project within %{group} with other groups').html_safe % { group: group_link }
|
|
|
|
%br
|
|
|
|
%span.descr= share_with_group_lock_help_text(@group)
|
|
|
|
|
|
|
|
= render 'group_admin_settings', f: f
|
|
|
|
|
2018-05-28 12:07:57 -04:00
|
|
|
= render_if_exists 'member_lock_setting', f: f, group: @group
|
|
|
|
|
2018-05-28 08:58:39 -04:00
|
|
|
= f.submit 'Save group', class: 'btn btn-success'
|