66 lines
2.1 KiB
Text
66 lines
2.1 KiB
Text
= form_for(@project, :remote => true) do |f|
|
|
%div.form_content
|
|
- unless @project.new_record?
|
|
%h2.icon
|
|
%span
|
|
= @project.name
|
|
.clear
|
|
- if @project.errors.any?
|
|
#error_explanation
|
|
%h2
|
|
= pluralize(@project.errors.count, "error")
|
|
prohibited this project from being saved:
|
|
%ul
|
|
- @project.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
%table
|
|
%tr
|
|
%td= f.label :name
|
|
%td= f.text_field :name, :placeholder => "Example Project"
|
|
%tr
|
|
%td
|
|
.left= f.label :path
|
|
%cite.right= "git@#{GIT_HOST["host"]}:"
|
|
%td
|
|
= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
|
|
%tr
|
|
%td
|
|
.left= f.label :code
|
|
%cite.right= "http://#{GIT_HOST["host"]}/"
|
|
%td= f.text_field :code, :placeholder => "example"
|
|
|
|
- unless @project.new_record? || @project.heads.empty?
|
|
%tr
|
|
%td= f.label :default_branch, "Default Branch"
|
|
%td= f.select(:default_branch, @project.heads.map(&:name), {}, :style => "width:300px;")
|
|
|
|
%tr
|
|
%td= f.label :tag_list
|
|
%td= f.text_area :tag_list, :placeholder => "project tags", :style => "height:50px", :id => :tag_field
|
|
%tr
|
|
%td= f.label :description
|
|
%td= f.text_area :description, :placeholder => "project description", :style => "height:50px"
|
|
|
|
%br
|
|
.actions
|
|
= f.submit :class => "button"
|
|
|
|
%div{ :class => "ajax_loader", :style => "display:none;height:200px;"}
|
|
%center
|
|
= image_tag "ajax-loader.gif", :class => "append-bottom"
|
|
- if @project.new_record?
|
|
%h3.prepend-top Creating project & repository. Please wait for few minutes
|
|
- else
|
|
%h3.prepend-top Updating project & repository. Please wait for few minutes
|
|
|
|
:javascript
|
|
$('.new_project, .edit_project').bind('ajax:before', function() {
|
|
$(this).find(".form_content").hide();
|
|
$('.ajax_loader').show();
|
|
});
|
|
|
|
:javascript
|
|
$(function(){
|
|
taggifyForm();
|
|
$('form #project_default_branch').chosen();
|
|
})
|