2012-08-11 00:07:50 +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-04-24 20:49:34 +02:00
|
|
|
.clearfix.project_name_holder
|
|
|
|
= f.label :name do
|
|
|
|
Project name is
|
2012-02-08 00:00:49 +01:00
|
|
|
.input
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.text_field :name, placeholder: "Example Project", class: "xxlarge"
|
2011-11-04 09:11:14 +01:00
|
|
|
|
2012-08-29 21:29:50 +02:00
|
|
|
%hr
|
|
|
|
.adv_settings
|
|
|
|
%h6 Advanced settings:
|
2012-04-24 20:49:34 +02:00
|
|
|
.clearfix
|
2012-06-04 00:37:27 +02:00
|
|
|
= f.label :path do
|
2012-07-05 20:59:37 +02:00
|
|
|
Path
|
2012-04-24 20:49:34 +02:00
|
|
|
.input
|
|
|
|
.input-prepend
|
2012-07-05 20:59:37 +02:00
|
|
|
%strong
|
2012-08-11 00:07:50 +02:00
|
|
|
= text_field_tag :ppath, @project.path_to_repo, class: "xlarge", disabled: true
|
2012-01-28 15:47:55 +01:00
|
|
|
.clearfix
|
2012-06-04 00:37:27 +02:00
|
|
|
= f.label :code do
|
2012-04-24 20:49:34 +02:00
|
|
|
URL
|
|
|
|
.input
|
|
|
|
.input-prepend
|
|
|
|
%span.add-on= web_app_url
|
2012-08-11 00:07:50 +02:00
|
|
|
= f.text_field :code, placeholder: "example"
|
2012-04-24 20:49:34 +02:00
|
|
|
|
2012-06-04 00:37:27 +02:00
|
|
|
- unless @project.new_record? || @project.heads.empty?
|
2012-04-24 20:49:34 +02:00
|
|
|
.clearfix
|
|
|
|
= f.label :default_branch, "Default Branch"
|
2012-08-11 00:07:50 +02:00
|
|
|
.input= f.select(:default_branch, @project.heads.map(&:name), {}, style: "width:210px;")
|
2011-12-07 22:56:57 +01:00
|
|
|
|
2012-06-04 00:37:27 +02:00
|
|
|
- unless @project.new_record?
|
2012-08-29 21:29:50 +02:00
|
|
|
%hr
|
|
|
|
.adv_settings
|
|
|
|
%h6 Features:
|
2012-02-06 18:40:32 +01:00
|
|
|
|
|
|
|
.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-06-04 00:37:27 +02:00
|
|
|
|
2012-02-19 15:35:31 +01:00
|
|
|
.clearfix
|
|
|
|
= f.label :wiki_enabled, "Wiki"
|
|
|
|
.input= f.check_box :wiki_enabled
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-01-27 23:51:02 +01:00
|
|
|
%br
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-01-28 15:47:55 +01:00
|
|
|
.actions
|
2012-08-29 21:29:50 +02:00
|
|
|
= f.submit 'Save', class: "btn save-btn"
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to 'Cancel', @project, class: "btn"
|
2011-12-15 20:42:33 +01:00
|
|
|
- unless @project.new_record?
|
|
|
|
.right
|
2012-08-11 00:07:50 +02:00
|
|
|
= link_to 'Remove', @project, confirm: 'Are you sure?', method: :delete, class: "btn danger"
|