2021-10-27 15:23:28 +05:30
|
|
|
= gitlab_ui_form_for [:admin, @group] do |f|
|
2022-07-23 23:45:48 +05:30
|
|
|
= form_errors(@group, pajamas_alert: true)
|
2022-08-13 15:12:31 +05:30
|
|
|
.gl-border-b.gl-mb-6
|
|
|
|
.row
|
|
|
|
.col-lg-4
|
|
|
|
%h4.gl-mt-0
|
|
|
|
= _('Naming, visibility')
|
|
|
|
%p
|
|
|
|
= _('Update your group name, description, avatar, and visibility.')
|
|
|
|
= link_to _('Learn more about groups.'), help_page_path('user/group/index')
|
|
|
|
.col-lg-8
|
2022-08-27 11:52:29 +05:30
|
|
|
= render 'shared/groups/group_name_and_path_fields', f: f
|
2022-08-13 15:12:31 +05:30
|
|
|
= render 'shared/group_form_description', f: f
|
|
|
|
.form-group.gl-form-group{ role: 'group' }
|
|
|
|
= f.label :avatar, _("Group avatar"), class: 'gl-display-block col-form-label'
|
|
|
|
= render 'shared/choose_avatar_button', f: f
|
|
|
|
= render 'shared/old_visibility_level', f: f, visibility_level: visibility_level, can_change_visibility_level: can_change_group_visibility_level?(@group), form_model: @group, with_label: false
|
|
|
|
|
|
|
|
.gl-border-b.gl-pb-3.gl-mb-6
|
|
|
|
.row
|
|
|
|
.col-lg-4
|
|
|
|
%h4.gl-mt-0
|
|
|
|
= _('Permissions and group features')
|
|
|
|
%p
|
|
|
|
= _('Configure advanced permissions, Large File Storage, two-factor authentication, and CI/CD settings.')
|
|
|
|
.col-lg-8
|
|
|
|
= render_if_exists 'shared/old_repository_size_limit_setting', form: f, type: :group
|
|
|
|
= render_if_exists 'admin/namespace_plan', f: f
|
|
|
|
.form-group.gl-form-group{ role: 'group' }
|
|
|
|
= render 'shared/allow_request_access', form: f
|
|
|
|
= render 'groups/group_admin_settings', f: f
|
|
|
|
= render_if_exists 'namespaces/shared_runners_minutes_settings', group: @group, form: f
|
|
|
|
.gl-mb-3
|
|
|
|
.row
|
|
|
|
.col-lg-4
|
|
|
|
%h4.gl-mt-0
|
|
|
|
= _('Admin notes')
|
|
|
|
.col-lg-8
|
|
|
|
= render 'shared/admin/admin_note_form', f: f
|
2018-11-08 19:23:39 +05:30
|
|
|
|
2014-09-02 18:07:02 +05:30
|
|
|
- if @group.new_record?
|
2022-08-13 15:12:31 +05:30
|
|
|
= render Pajamas::AlertComponent.new(dismissible: false) do |c|
|
|
|
|
= c.body do
|
|
|
|
= render 'shared/group_tips'
|
|
|
|
.gl-mt-5
|
2021-04-17 20:07:23 +05:30
|
|
|
= f.submit _('Create group'), class: "gl-button btn btn-confirm"
|
2021-03-11 19:13:27 +05:30
|
|
|
= link_to _('Cancel'), admin_groups_path, class: "gl-button btn btn-default btn-cancel"
|
2014-09-02 18:07:02 +05:30
|
|
|
|
|
|
|
- else
|
2022-08-13 15:12:31 +05:30
|
|
|
.gl-mt-5
|
2021-04-17 20:07:23 +05:30
|
|
|
= f.submit _('Save changes'), class: "gl-button btn btn-confirm", data: { qa_selector: 'save_changes_button' }
|
2021-01-03 14:25:43 +05:30
|
|
|
= link_to _('Cancel'), admin_group_path(@group), class: "gl-button btn btn-cancel"
|