2015-01-24 13:02:58 -05:00
|
|
|
= form_for [@project.namespace.becomes(Namespace), @project, @note], remote: true, html: { :'data-type' => 'json', multipart: true, id: nil, class: "new_note js-new-note-form common-note-form gfm-form" }, authenticity_token: true do |f|
|
2015-11-17 10:08:58 -05:00
|
|
|
= hidden_field_tag :view, diff_view
|
2015-06-05 18:24:05 -04:00
|
|
|
= hidden_field_tag :line_type
|
2015-03-02 18:05:23 -05:00
|
|
|
= note_target_fields(@note)
|
2012-12-22 19:03:57 -05:00
|
|
|
= f.hidden_field :commit_id
|
2012-12-02 14:47:09 -05:00
|
|
|
= f.hidden_field :line_code
|
|
|
|
= f.hidden_field :noteable_id
|
|
|
|
= f.hidden_field :noteable_type
|
|
|
|
|
2015-09-21 10:30:19 -04:00
|
|
|
= render layout: 'projects/md_preview', locals: { preview_class: "md-preview", referenced_users: true } do
|
2015-10-05 18:20:43 -04:00
|
|
|
= render 'projects/zen', f: f, attr: :note, classes: 'note_text js-note-text js-quick-submit'
|
2015-07-26 16:55:43 -04:00
|
|
|
= render 'projects/notes/hints'
|
2015-03-20 08:11:12 -04:00
|
|
|
.error-alert
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2013-01-31 04:22:06 -05:00
|
|
|
.note-form-actions
|
2015-06-02 08:56:50 -04:00
|
|
|
.buttons.clearfix
|
2015-10-05 15:18:21 -04:00
|
|
|
= f.submit 'Add Comment', class: "btn btn-green comment-btn btn-grouped js-comment-button"
|
2013-02-25 16:10:50 -05:00
|
|
|
= yield(:note_actions)
|
2013-01-31 04:22:06 -05:00
|
|
|
%a.btn.grouped.js-close-discussion-note-form Cancel
|