2012-01-27 02:19:55 -05:00
|
|
|
= form_for [@project, @note], :remote => "true", :multipart => true do |f|
|
2012-01-27 01:57:55 -05:00
|
|
|
%h3 Leave a note
|
2012-01-27 02:19:55 -05:00
|
|
|
-if @note.errors.any?
|
|
|
|
.alert-message.block-message.error
|
|
|
|
- @note.errors.full_messages.each do |msg|
|
|
|
|
%div= msg
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-01-27 02:19:55 -05:00
|
|
|
= f.hidden_field :noteable_id
|
|
|
|
= f.hidden_field :noteable_type
|
|
|
|
= f.text_area :note, :size => 255
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2012-01-27 02:19:55 -05:00
|
|
|
.row
|
|
|
|
.span6
|
|
|
|
%h5 Notify via email:
|
|
|
|
.clearfix
|
|
|
|
= label_tag :notify do
|
|
|
|
= check_box_tag :notify, 1, @note.noteable_type != "Commit"
|
|
|
|
%span Project team
|
2011-11-15 03:34:30 -05:00
|
|
|
|
2012-01-27 02:19:55 -05:00
|
|
|
-if @note.noteable_type == "Commit"
|
|
|
|
= label_tag :notify_author do
|
|
|
|
= check_box_tag :notify_author, 1 , @note.noteable_type == "Commit"
|
|
|
|
%span Commit author
|
|
|
|
.span6
|
|
|
|
%h5 Attachment:
|
|
|
|
.clearfix
|
|
|
|
= f.label :attachment, "Any file, < 10 MB"
|
|
|
|
.input= f.file_field :attachment, :class => "input-file"
|
2011-10-08 17:36:38 -04:00
|
|
|
|
2011-12-24 11:28:20 -05:00
|
|
|
|
2012-01-27 02:19:55 -05:00
|
|
|
= f.submit 'Add note', :class => "btn primary", :id => "submit_note"
|