71 lines
1.9 KiB
Plaintext
71 lines
1.9 KiB
Plaintext
= form_for [:admin, project] do |f|
|
|
-if project.errors.any?
|
|
.alert-message.block-message.error
|
|
%ul
|
|
- 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"
|
|
|
|
%fieldset.adv_settings
|
|
%legend Advanced settings:
|
|
.clearfix
|
|
= f.label :path do
|
|
Path
|
|
.input
|
|
= text_field_tag :ppath, @project.path_to_repo, class: "xlarge", disabled: true
|
|
|
|
- if project.repo_exists?
|
|
.clearfix
|
|
= f.label :default_branch, "Default Branch"
|
|
.input= f.select(:default_branch, project.heads.map(&:name), {}, style: "width:210px;")
|
|
|
|
%fieldset.adv_settings
|
|
%legend 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
|
|
|
|
%fieldset.features
|
|
%legend Transfer:
|
|
.control-group
|
|
= f.label :namespace_id do
|
|
%span Namespace
|
|
.controls
|
|
= f.select :namespace_id, namespaces_options(@project.namespace_id, :all), {}, {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.
|
|
|
|
|
|
.actions
|
|
= f.submit 'Save Project', class: "btn save-btn"
|
|
= link_to 'Cancel', admin_projects_path, class: "btn cancel-btn"
|
|
|
|
|
|
|
|
:javascript
|
|
$(function(){
|
|
new Projects();
|
|
})
|
|
|