Welcome to mirror list, hosted at ThFree Co, Russian Federation.

edit.html.haml « groups « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6ec520e74b40f7301a39de191c346d2a8d737cdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
%h3.page_title Rename Group
%hr
= form_for [:admin, @group] do |f|
  - if @group.errors.any?
    .alert-message.block-message.error
      %span= @group.errors.full_messages.first
  .clearfix.group_name_holder
    = f.label :name do
      Group name is
    .input
      = f.text_field :name, placeholder: "Example Group", class: "xxlarge"



  .clearfix.group_name_holder
    = f.label :path do
      %span.cred Group path is
    .input
      = f.text_field :path, placeholder: "example-group", class: "xxlarge danger"
      %ul.cred
        %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 'Rename group', class: "btn btn-remove"
    = link_to  'Cancel', admin_groups_path, class: "btn btn-cancel"