60 lines
1.8 KiB
Text
60 lines
1.8 KiB
Text
= form_for(@project, :remote => true) do |f|
|
|
- if @project.errors.any?
|
|
.alert-message.block-message.error
|
|
%ul
|
|
- @project.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
.clearfix
|
|
= f.label :name
|
|
.input= f.text_field :name, :placeholder => "Example Project"
|
|
.clearfix
|
|
= f.label :path do
|
|
Path
|
|
.input
|
|
.input-prepend
|
|
%span.add-on= "git@#{GIT_HOST["host"]}:"
|
|
= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
|
|
.clearfix
|
|
= f.label :code do
|
|
Code
|
|
.input
|
|
.input-prepend
|
|
%span.add-on= "http://#{GIT_HOST["host"]}/"
|
|
= f.text_field :code, :placeholder => "example"
|
|
|
|
- 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;")
|
|
|
|
.alert-message.block-message.warning
|
|
%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
|
|
|
|
.clearfix
|
|
= f.label :wiki_enabled, "Wiki"
|
|
.input= f.check_box :wiki_enabled
|
|
|
|
.clearfix
|
|
= f.label :description
|
|
.input= f.text_area :description, :placeholder => "project description", :class => "xlarge", :rows => 4
|
|
|
|
%br
|
|
|
|
.actions
|
|
= f.submit 'Save', :class => "btn primary"
|
|
= link_to 'Cancel', @project, :class => "btn"
|
|
- unless @project.new_record?
|
|
.right
|
|
= link_to 'Remove', @project, :confirm => 'Are you sure?', :method => :delete, :class => "btn danger"
|