2016-09-15 10:57:06 -04:00
|
|
|
- supports_slash_commands = note_supports_slash_commands?(@note)
|
|
|
|
|
2016-07-29 06:19:56 -04: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 js-quick-submit common-note-form", "data-noteable-iid" => @note.noteable.try(:iid), }, 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
|
2016-05-10 18:41:46 -04:00
|
|
|
= f.hidden_field :type
|
2016-06-20 13:23:46 -04:00
|
|
|
= f.hidden_field :position
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2015-09-21 10:30:19 -04:00
|
|
|
= render layout: 'projects/md_preview', locals: { preview_class: "md-preview", referenced_users: true } do
|
2016-08-12 21:19:16 -04:00
|
|
|
= render 'projects/zen', f: f,
|
|
|
|
attr: :note,
|
|
|
|
classes: 'note-textarea js-note-text',
|
|
|
|
placeholder: "Write a comment or drag your files here...",
|
2016-09-15 10:57:06 -04:00
|
|
|
supports_slash_commands: supports_slash_commands
|
|
|
|
= render 'projects/notes/hints', supports_slash_commands: supports_slash_commands
|
2015-03-20 08:11:12 -04:00
|
|
|
.error-alert
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2015-12-02 08:38:14 -05:00
|
|
|
.note-form-actions.clearfix
|
2016-06-17 06:43:59 -04:00
|
|
|
= f.submit 'Comment', class: "btn btn-nr btn-create append-right-10 comment-btn js-comment-button"
|
2015-12-02 08:38:14 -05:00
|
|
|
= yield(:note_actions)
|
2016-03-04 05:44:04 -05:00
|
|
|
%a.btn.btn-cancel.js-note-discard{role: "button", data: {cancel_text: "Cancel"}}
|
2016-03-04 03:42:22 -05:00
|
|
|
Discard draft
|