2018-10-06 10:21:38 -04:00
- @hide_breadcrumbs = true
2017-07-06 12:24:03 -04:00
- @hide_top_links = true
2018-10-30 12:23:47 -04:00
- page_title _('New Group')
- header_title _("Groups"), dashboard_groups_path
2015-12-02 08:27:29 -05:00
2019-04-12 07:59:24 -04:00
.page-title-holder.d-flex.align-items-center
2018-10-30 12:23:47 -04:00
%h1.page-title= _('New group')
2018-06-26 11:02:24 -04:00
.row.prepend-top-default
.col-lg-3.profile-settings-sidebar
%p
- group_docs_path = help_page_path('user/group/index')
- group_docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: group_docs_path }
= s_('%{group_docs_link_start}Groups%{group_docs_link_end} allow you to manage and collaborate across multiple projects. Members of a group have access to all of its projects.').html_safe % { group_docs_link_start: group_docs_link_start, group_docs_link_end: '</a>'.html_safe }
%p
- subgroup_docs_path = help_page_path('user/group/subgroups/index')
- subgroup_docs_link_start = '<a href="%{url}" target="_blank" rel="noopener noreferrer">'.html_safe % { url: subgroup_docs_path }
= s_('Groups can also be nested by creating %{subgroup_docs_link_start}subgroups%{subgroup_docs_link_end}.').html_safe % { subgroup_docs_link_start: subgroup_docs_link_start, subgroup_docs_link_end: '</a>'.html_safe }
2018-10-30 12:23:47 -04:00
%p
= _('Projects that belong to a group are prefixed with the group namespace. Existing projects may be moved into a group.')
2015-12-02 08:27:29 -05:00
2018-06-26 11:02:24 -04:00
.col-lg-9
= form_for @group, html: { class: 'group-form gl-show-field-errors' } do |f|
= form_errors(@group)
= render 'shared/group_form', f: f, autofocus: true
2013-02-19 14:02:25 -05:00
2018-10-30 12:23:47 -04:00
.row
.form-group.group-description-holder.col-sm-12
= f.label :avatar, _("Group avatar"), class: 'label-bold'
%div
2019-03-14 16:52:01 -04:00
= render 'shared/choose_avatar_button', f: f
2016-03-01 10:22:29 -05:00
2018-10-30 12:23:47 -04:00
.form-group.col-sm-12
%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'
2018-10-18 21:07:29 -04:00
= render 'shared/visibility_level', f: f, visibility_level: default_group_visibility, can_change_visibility_level: true, form_model: @group, with_label: false
2017-02-06 12:23:06 -05:00
2018-10-30 12:23:47 -04:00
= render 'create_chat_team', f: f if Gitlab.config.mattermost.enabled
2013-06-07 10:41:01 -04:00
2018-06-26 11:02:24 -04:00
.form-actions
2019-10-15 14:06:01 -04:00
= f.submit _('Create group'), class: "btn btn-success"
= link_to _('Cancel'), dashboard_groups_path, class: 'btn btn-cancel'