mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-14 15:16:04 +10:00
Conflicts: Gemfile VERSION app/assets/javascripts/project.js.coffee app/assets/javascripts/users_select.js.coffee app/controllers/projects/services_controller.rb app/models/project.rb app/views/groups/edit.html.haml features/project/service.feature features/steps/project/services.rb spec/models/concerns/mentionable_spec.rb
44 lines
1.5 KiB
Plaintext
44 lines
1.5 KiB
Plaintext
= form_for [:admin, @group], html: { class: "form-horizontal" } do |f|
|
|
- if @group.errors.any?
|
|
.alert.alert-danger
|
|
%span= @group.errors.full_messages.first
|
|
|
|
= render 'shared/group_form', f: f
|
|
|
|
.form-group.group-description-holder
|
|
= f.label :avatar, "Group avatar", class: 'control-label'
|
|
.col-sm-10
|
|
= render 'shared/choose_group_avatar_button', f: f
|
|
|
|
- if @group.new_record?
|
|
.form-group
|
|
.col-sm-2
|
|
.col-sm-10
|
|
.bs-callout.bs-callout-info
|
|
= render 'shared/group_tips'
|
|
.form-actions
|
|
= f.submit 'Create group', class: "btn btn-create"
|
|
= link_to 'Cancel', admin_groups_path, class: "btn btn-cancel"
|
|
|
|
- else
|
|
.form-group.group_name_holder
|
|
= f.label :path, class: 'control-label' do
|
|
%span Group path
|
|
.col-sm-10
|
|
= f.text_field :path, placeholder: "example-group", class: "form-control danger"
|
|
.bs-callout.bs-callout-danger
|
|
%ul
|
|
%li Changing group path can have unintended side effects.
|
|
%li Renaming group path will rename directory for all related projects
|
|
%li It will change web url for access group and group projects.
|
|
%li It will change the git path to repositories under this group.
|
|
|
|
.form-actions
|
|
= f.submit 'Save changes', class: "btn btn-primary"
|
|
= link_to 'Cancel', admin_group_path(@group), class: "btn btn-cancel"
|
|
|
|
- if @group.persisted?
|
|
%h3.page-title Linked LDAP groups
|
|
= render 'ldap_group_links/form', group: @group
|
|
= render 'ldap_group_links/ldap_group_links', group: @group
|