gitlabhq/app/views/projects/_form.html.haml

39 lines
1.2 KiB
Plaintext
Raw Normal View History

2011-10-08 23:36:38 +02:00
= form_for(@project, :remote => true) do |f|
2012-01-27 23:51:02 +01:00
- if @project.errors.any?
.alert-message.block-message.error
%ul
2012-01-18 00:19:57 +01:00
- @project.errors.full_messages.each do |msg|
%li= msg
2012-01-27 23:51:02 +01:00
.clearfix
= f.label :name
.input= f.text_field :name, :placeholder => "Example Project"
.clearfix
= f.label :path do
Path
%cite= "git@#{GIT_HOST["host"]}:"
.input= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
.clearfix
= f.label :code do
Code
%cite= "http://#{GIT_HOST["host"]}/"
.input= f.text_field :code, :placeholder => "example"
2011-11-04 09:11:14 +01:00
2012-01-27 23:51:02 +01:00
- unless @project.new_record? || @project.heads.empty?
.clearfix
= f.label :default_branch, "Default Branch"
.input= f.select(:default_branch, @project.heads.map(&:name), {}, :style => "width:300px;")
2012-01-27 23:51:02 +01:00
.clearfix
= f.label :description
.input= f.text_area :description, :placeholder => "project description", :style => "height:50px"
2011-11-04 09:11:14 +01:00
2012-01-27 23:51:02 +01:00
%br
.merge-tabs
2012-01-27 08:19:55 +01:00
= f.submit 'Save', :class => "btn primary"
 
- unless @project.new_record?
.right
2012-01-27 23:51:02 +01:00
= link_to 'Remove', @project, :confirm => 'Are you sure?', :method => :delete, :class => "btn"