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

60 lines
1.8 KiB
Plaintext
Raw Normal View History

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