2020-06-23 00:09:42 +05:30
|
|
|
= form_errors(@group)
|
|
|
|
= render 'shared/group_form', f: f, autofocus: true
|
|
|
|
|
|
|
|
.row
|
2021-02-22 17:27:13 +05:30
|
|
|
.form-group.col-sm-12.gl-mb-0
|
2020-06-23 00:09:42 +05:30
|
|
|
%label.label-bold
|
|
|
|
= _('Visibility level')
|
|
|
|
%p
|
|
|
|
= _('Who will be able to see this group?')
|
|
|
|
= link_to _('View the documentation'), help_page_path("public_access/public_access"), target: '_blank'
|
|
|
|
= render 'shared/visibility_level', f: f, visibility_level: default_group_visibility, can_change_visibility_level: true, form_model: @group, with_label: false
|
|
|
|
|
2021-02-22 17:27:13 +05:30
|
|
|
- if Gitlab.config.mattermost.enabled
|
|
|
|
.row
|
|
|
|
= render 'create_chat_team', f: f
|
|
|
|
.row
|
|
|
|
.col-sm-4
|
|
|
|
= render_if_exists 'shared/groups/invite_members'
|
|
|
|
.row
|
2020-06-23 00:09:42 +05:30
|
|
|
.form-actions.col-sm-12
|
2021-04-17 20:07:23 +05:30
|
|
|
= f.submit _('Create group'), class: "btn gl-button btn-confirm"
|
2021-03-11 19:13:27 +05:30
|
|
|
= link_to _('Cancel'), dashboard_groups_path, class: 'btn gl-button btn-default btn-cancel'
|