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

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

  .clearfix.team_name_holder
    = f.label :path do
      %span.cred Team path is
    .input
      = f.text_field :path, placeholder: "example-team", class: "xxlarge danger"
      %ul.cred
        %li It will change web url for access team and team projects.

  .form-actions
    = f.submit 'Rename team', class: "btn btn-remove"
    = link_to  'Cancel', admin_teams_path, class: "btn btn-cancel"