2011-10-09 00:36:38 +03:00
|
|
|
= form_for(@project, :remote => true) do |f|
|
2012-01-28 00:51:02 +02:00
|
|
|
- if @project.errors.any?
|
|
|
|
.alert-message.block-message.error
|
|
|
|
%ul
|
2012-01-18 01:19:57 +02:00
|
|
|
- @project.errors.full_messages.each do |msg|
|
|
|
|
%li= msg
|
2012-01-28 00:51:02 +02:00
|
|
|
.clearfix
|
|
|
|
= f.label :name
|
|
|
|
.input= f.text_field :name, :placeholder => "Example Project"
|
|
|
|
.clearfix
|
|
|
|
= f.label :path do
|
|
|
|
Path
|
2012-02-08 01:00:49 +02:00
|
|
|
.input
|
|
|
|
.input-prepend
|
2012-03-06 17:39:07 -06:00
|
|
|
%span.add-on= "#{GIT_HOST["git_user"]}@#{GIT_HOST["host"]}:"
|
2012-02-08 01:00:49 +02:00
|
|
|
= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
|
2012-01-28 00:51:02 +02:00
|
|
|
.clearfix
|
|
|
|
= f.label :code do
|
|
|
|
Code
|
2012-02-08 01:00:49 +02:00
|
|
|
.input
|
|
|
|
.input-prepend
|
2012-03-22 20:02:38 +02:00
|
|
|
%span.add-on= web_app_url
|
2012-02-08 01:00:49 +02:00
|
|
|
= f.text_field :code, :placeholder => "example"
|
2011-11-04 10:11:14 +02:00
|
|
|
|
2012-01-28 16:47:55 +02: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:210px;")
|
2011-12-07 23:56:57 +02:00
|
|
|
|
2012-02-18 15:59:01 +02:00
|
|
|
.alert-message.block-message.warning
|
2012-02-06 19:40:32 +02:00
|
|
|
%h5 Features
|
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :issues_enabled, "Issues"
|
|
|
|
.input= f.check_box :issues_enabled
|
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :merge_requests_enabled, "Merge Requests"
|
|
|
|
.input= f.check_box :merge_requests_enabled
|
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :wall_enabled, "Wall"
|
|
|
|
.input= f.check_box :wall_enabled
|
2012-02-19 16:35:31 +02:00
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :wiki_enabled, "Wiki"
|
|
|
|
.input= f.check_box :wiki_enabled
|
2012-01-28 00:51:02 +02:00
|
|
|
|
|
|
|
.clearfix
|
|
|
|
= f.label :description
|
2012-03-14 12:39:33 +02:00
|
|
|
.input
|
|
|
|
= f.text_area :description, :placeholder => "project description", :class => "xlarge", :rows => 4
|
|
|
|
%p.hint Markdown is enabled.
|
2011-11-04 10:11:14 +02:00
|
|
|
|
2012-01-28 00:51:02 +02:00
|
|
|
%br
|
2011-12-15 21:42:33 +02:00
|
|
|
|
2012-01-28 16:47:55 +02:00
|
|
|
.actions
|
2012-01-27 09:19:55 +02:00
|
|
|
= f.submit 'Save', :class => "btn primary"
|
2012-01-28 16:47:55 +02:00
|
|
|
= link_to 'Cancel', @project, :class => "btn"
|
2011-12-15 21:42:33 +02:00
|
|
|
- unless @project.new_record?
|
|
|
|
.right
|
2012-01-28 16:47:55 +02:00
|
|
|
= link_to 'Remove', @project, :confirm => 'Are you sure?', :method => :delete, :class => "btn danger"
|