2011-10-09 00:36:38 +03:00
|
|
|
= form_for(@project, :remote => true) do |f|
|
|
|
|
%div.form_content
|
2011-10-17 00:07:10 +03:00
|
|
|
- unless @project.new_record?
|
2011-11-15 12:34:30 +04:00
|
|
|
%h2.icon
|
2011-11-08 12:23:13 -05:00
|
|
|
%span
|
|
|
|
= @project.name
|
2011-10-09 00:36:38 +03:00
|
|
|
- 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
|
2011-11-08 12:23:13 -05:00
|
|
|
%table
|
2011-10-09 00:36:38 +03:00
|
|
|
%tr
|
|
|
|
%td= f.label :name
|
|
|
|
%td= f.text_field :name, :placeholder => "Example Project"
|
|
|
|
%tr
|
|
|
|
%td
|
|
|
|
.left= f.label :path
|
2011-11-14 16:15:26 +08:00
|
|
|
%cite.right= "git@#{GITOSIS["host"]}:"
|
2011-10-09 00:36:38 +03:00
|
|
|
%td
|
|
|
|
= f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
|
|
|
|
%tr
|
2011-10-26 18:46:25 +05:00
|
|
|
%td
|
2011-10-09 00:36:38 +03:00
|
|
|
.left= f.label :code
|
2011-11-14 16:15:26 +08:00
|
|
|
%cite.right= "http://#{GITOSIS["host"]}/"
|
2011-10-18 11:21:44 +03:00
|
|
|
%td= f.text_field :code, :placeholder => "example"
|
2011-11-04 10:11:14 +02:00
|
|
|
|
|
|
|
%tr
|
|
|
|
%td= f.label :tag_list
|
|
|
|
%td= f.text_area :tag_list, :placeholder => "project tags", :style => "height:50px", :id => :tag_field
|
2011-11-08 12:23:13 -05:00
|
|
|
%tr
|
|
|
|
%td= f.label :description
|
|
|
|
%td= f.text_area :description, :placeholder => "project description", :style => "height:50px"
|
2011-11-04 10:11:14 +02:00
|
|
|
|
2011-11-08 12:23:13 -05:00
|
|
|
%br
|
2011-10-09 00:36:38 +03:00
|
|
|
.actions
|
2011-11-08 12:23:13 -05:00
|
|
|
= f.submit :class => "button"
|
2011-10-09 00:36:38 +03:00
|
|
|
|
|
|
|
%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
|
2011-10-26 18:46:25 +05:00
|
|
|
- else
|
2011-10-09 00:36:38 +03:00
|
|
|
%h3.prepend-top Updating project & repository. Please wait for few minutes
|
2011-11-04 10:11:14 +02:00
|
|
|
|
2011-10-09 00:36:38 +03:00
|
|
|
:javascript
|
2011-10-26 18:46:25 +05:00
|
|
|
$('.new_project, .edit_project').bind('ajax:before', function() {
|
|
|
|
$(this).find(".form_content").hide();
|
2011-10-09 00:36:38 +03:00
|
|
|
$('.ajax_loader').show();
|
2011-10-26 18:46:25 +05:00
|
|
|
});
|
2011-11-04 10:11:14 +02:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
$(function(){
|
2011-11-07 20:38:54 +02:00
|
|
|
taggifyForm();
|
2011-11-15 12:34:30 +04:00
|
|
|
})
|