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?
|
2013-01-30 15:53:18 +01:00
|
|
|
.alert.alert-error
|
2012-01-27 23:51:02 +01:00
|
|
|
%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"
|
2013-01-17 16:35:57 +01:00
|
|
|
- unless @repository.heads.empty?
|
|
|
|
.clearfix
|
|
|
|
= f.label :default_branch, "Default Branch"
|
|
|
|
.input= f.select(:default_branch, @repository.heads.map(&:name), {}, style: "width:210px;")
|
2012-11-24 21:00:30 +01:00
|
|
|
|
2011-12-07 22:56:57 +01:00
|
|
|
|
2012-12-02 18:28:23 +01:00
|
|
|
%fieldset.features
|
2012-11-24 21:00:30 +01:00
|
|
|
%legend Features:
|
2012-02-06 18:40:32 +01:00
|
|
|
|
2012-12-02 18:28:23 +01:00
|
|
|
.control-group
|
|
|
|
= f.label :issues_enabled, "Issues", class: 'control-label'
|
|
|
|
.controls
|
|
|
|
= f.check_box :issues_enabled
|
|
|
|
%span.descr Lightweight issue tracking system for this project
|
2012-02-06 18:40:32 +01:00
|
|
|
|
2012-12-02 18:28:23 +01:00
|
|
|
.control-group
|
|
|
|
= f.label :merge_requests_enabled, "Merge Requests", class: 'control-label'
|
|
|
|
.controls
|
|
|
|
= f.check_box :merge_requests_enabled
|
|
|
|
%span.descr Submit changes to be merged upstream.
|
2012-02-06 18:40:32 +01:00
|
|
|
|
2012-12-02 18:28:23 +01:00
|
|
|
.control-group
|
|
|
|
= f.label :wall_enabled, "Wall", class: 'control-label'
|
|
|
|
.controls
|
|
|
|
= f.check_box :wall_enabled
|
|
|
|
%span.descr Simple chat system for broadcasting inside project
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2012-12-02 18:28:23 +01:00
|
|
|
.control-group
|
|
|
|
= f.label :wiki_enabled, "Wiki", class: 'control-label'
|
|
|
|
.controls
|
|
|
|
= f.check_box :wiki_enabled
|
|
|
|
%span.descr Pages for project documentation
|
2012-06-04 00:37:27 +02:00
|
|
|
|
2013-02-01 18:04:11 +01:00
|
|
|
- if can?(current_user, :change_public_mode, @project)
|
2013-01-16 15:54:01 +01:00
|
|
|
%fieldset.features
|
|
|
|
%legend
|
|
|
|
%i.icon-share
|
|
|
|
Public mode:
|
|
|
|
.control-group
|
|
|
|
= f.label :public, class: 'control-label' do
|
2013-01-19 01:30:05 +01:00
|
|
|
%span Public clone access
|
2013-01-16 15:54:01 +01:00
|
|
|
.controls
|
|
|
|
= f.check_box :public
|
|
|
|
%span.descr
|
2013-01-19 01:30:05 +01:00
|
|
|
If checked, this project can be cloned
|
|
|
|
%em without any
|
|
|
|
authentification.
|
|
|
|
It will also be listed on the #{link_to "public access directory", public_root_path}.
|
2013-01-16 15:54:01 +01:00
|
|
|
|
2012-12-14 04:14:05 +01:00
|
|
|
|
|
|
|
- if can? current_user, :change_namespace, @project
|
|
|
|
%fieldset.features
|
|
|
|
%legend Transfer:
|
|
|
|
.control-group
|
|
|
|
= f.label :namespace_id do
|
|
|
|
%span Namespace
|
|
|
|
.controls
|
|
|
|
= f.select :namespace_id, namespaces_options(@project.namespace_id || Namespace::global_id), {prompt: 'Choose a project namespace'}, {class: 'chosen'}
|
|
|
|
%br
|
|
|
|
%ul.prepend-top-10.cred
|
|
|
|
%li Be careful. Changing project namespace can have unintended side effects
|
|
|
|
%li You can transfer project only to namespaces you can manage
|
|
|
|
%li You will need to update your local repositories to point to the new location.
|
|
|
|
|
|
|
|
|
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
|
2013-01-29 21:18:19 +01:00
|
|
|
= f.submit 'Save', class: "btn btn-save"
|
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?
|
2012-12-05 04:14:05 +01:00
|
|
|
- if can?(current_user, :remove_project, @project)
|
2013-01-30 15:40:43 +01:00
|
|
|
.pull-right
|
2013-01-29 21:18:19 +01:00
|
|
|
= link_to 'Remove Project', @project, confirm: 'Removed project can not be restored! Are you sure?', method: :delete, class: "btn btn-remove"
|