_per_line_form.html.haml 1.08 KB
Newer Older
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
%table{:style => "display:none;"}
  %tr.per_line_form
    %td{:colspan => 3 }
      %div
        = form_for [@project, @note], :remote => "true", :multipart => true do |f|
          -if @note.errors.any?
            .errors.error
              - @note.errors.full_messages.each do |msg|
                %div= msg

          = f.hidden_field :noteable_id
          = f.hidden_field :noteable_type
          = f.hidden_field :line_code

          %div
            = f.label :note
            %cite.cgray markdown supported
            %br
            %br
            = f.text_area :note,  :size => 255
            
            %p.notify_controls
              %span Notify:
              = check_box_tag :notify, 1, @note.noteable_type != "Commit"
              = label_tag :notify, "Project team"

              -if @note.noteable_type == "Commit"
                = check_box_tag :notify_author, 1 , @note.noteable_type == "Commit"
                = label_tag :notify_author, "Commit author"

          .clear
          %br
          = f.submit 'Add note', :class => "grey-button", :id => "submit_note"