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

36 lines
1.1 KiB
Text
Raw Normal View History

2012-01-27 09:19:55 +02:00
= form_for [@project, @note], :remote => "true", :multipart => true do |f|
2012-03-24 18:19:26 -03:00
%h3 Leave a comment
2012-01-27 09:19:55 +02:00
-if @note.errors.any?
.alert-message.block-message.error
- @note.errors.full_messages.each do |msg|
%div= msg
2011-10-09 00:36:38 +03:00
2012-01-27 09:19:55 +02:00
= f.hidden_field :noteable_id
= f.hidden_field :noteable_type
= f.text_area :note, :size => 255
2012-03-24 14:42:45 -03:00
%p.hint Markdown is enabled.
2011-10-09 00:36:38 +03:00
.row.note_advanced_opts.hide
2012-01-28 01:49:14 +02:00
.span4
2012-01-27 09:19:55 +02:00
%h5 Notify via email:
.clearfix
= label_tag :notify do
2012-01-27 09:19:55 +02:00
= check_box_tag :notify, 1, @note.noteable_type != "Commit"
%span Project team
2011-11-15 12:34:30 +04:00
2012-02-10 10:59:39 +08:00
- if @note.notify_only_author?(current_user)
= label_tag :notify_author do
2012-01-27 09:19:55 +02:00
= check_box_tag :notify_author, 1 , @note.noteable_type == "Commit"
%span Commit author
.span8
2012-01-27 09:19:55 +02:00
%h5 Attachment:
.clearfix
2012-03-25 19:44:29 +03:00
.attachments
%div.file_name File name...
2012-03-25 19:44:29 +03:00
%button.file_upload.btn.small Upload File
.input= f.file_field :attachment, :class => "input-file"
2012-04-20 23:36:09 +02:00
%span Any file less than 10 MB
2011-10-09 00:36:38 +03:00
= f.submit 'Add Comment', :class => "btn primary", :id => "submit_note"