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

65 lines
1.8 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
.clearfix.project_name_holder
= f.label :name do
Project name is
.input
= f.text_field :name, :placeholder => "Example Project", :class => "xxlarge"
2011-11-04 09:11:14 +01:00
%hr
.alert.alert-info
%h5 Advanced settings:
.clearfix
= f.label :path do
Git Clone
.input
.input-prepend
%span.add-on= Gitlab.config.ssh_path
= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
%span.add-on= ".git"
2012-01-28 15:47:55 +01:00
.clearfix
= f.label :code do
URL
.input
.input-prepend
%span.add-on= web_app_url
= 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;")
- unless @project.new_record?
.alert.alert-info
%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 15:35:31 +01:00
.clearfix
= f.label :wiki_enabled, "Wiki"
.input= f.check_box :wiki_enabled
2012-01-27 23:51:02 +01:00
%br
2012-01-28 15:47:55 +01:00
.actions
2012-01-27 08:19:55 +01:00
= f.submit 'Save', :class => "btn primary"
2012-01-28 15:47:55 +01:00
= link_to 'Cancel', @project, :class => "btn"
- unless @project.new_record?
.right
2012-01-28 15:47:55 +01:00
= link_to 'Remove', @project, :confirm => 'Are you sure?', :method => :delete, :class => "btn danger"