summaryrefslogtreecommitdiff
path: root/app/views/projects/_form.html.haml
blob: 2c3be8a52f87238a09c2c1e16f5921b16ad40b97 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
= form_for(@project, :remote => true) do |f|
  %div.form_content
    - unless @project.new_record?
      %h2.icon
        %span
        = @project.name
    - 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@yourserver:
        %td
          = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
      %tr
        %td
          .left= f.label :code
          %cite.right http://yourserver/
        %td= f.text_field :code, :placeholder => "example"

      %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();
  })