gitlabhq/app/views/teams/edit.html.haml

35 lines
1 KiB
Plaintext
Raw Normal View History

%h3.page_title= "Edit Team #{@team.name}"
2013-01-19 18:32:09 +01:00
%hr
2013-02-18 19:31:43 +01:00
.row
.span7
= form_for @team, url: team_path(@team) do |f|
- if @team.errors.any?
.alert.alert-error
%span= @team.errors.full_messages.first
.clearfix
= f.label :name do
Team name is
.input
= f.text_field :name, placeholder: "Ex. OpenSource", class: "xlarge left"
2013-02-19 20:02:25 +01:00
.clearfix.team-description-holder
= f.label :description, "Details"
.input
2013-03-04 18:47:20 +01:00
= f.text_area :description, maxlength: 250, class: "xlarge js-gfm-input", rows: 4
2013-02-19 20:02:25 +01:00
2013-02-18 19:31:43 +01:00
.clearfix
= f.label :path do
Team path is
.input
= f.text_field :path, placeholder: "opensource", class: "xlarge left"
2013-02-19 20:02:25 +01:00
2013-02-18 19:31:43 +01:00
.form-actions
2013-02-19 20:02:25 +01:00
= f.submit 'Save team changes', class: "btn btn-primary"
2013-02-18 19:31:43 +01:00
.span5
.ui-box
%h5.title Remove team
.padded.bgred
%p
Removed team can not be restored!
= link_to 'Remove team', team_path(@team), method: :delete, confirm: "You are sure?", class: "btn btn-remove btn-small"