debian-mirror-gitlab/app/views/projects/notes/_form.html.haml

26 lines
1.2 KiB
Text
Raw Normal View History

2016-09-13 17:45:13 +05:30
= 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-26 14:37:03 +05:30
= hidden_field_tag :view, diff_view
2015-09-11 14:41:01 +05:30
= hidden_field_tag :line_type
2015-04-26 12:48:37 +05:30
= note_target_fields(@note)
2014-09-02 18:07:02 +05:30
= f.hidden_field :commit_id
= f.hidden_field :line_code
= f.hidden_field :noteable_id
= f.hidden_field :noteable_type
2016-06-02 11:05:42 +05:30
= f.hidden_field :type
2016-08-24 12:49:21 +05:30
= f.hidden_field :position
2014-09-02 18:07:02 +05:30
2015-09-25 12:07:36 +05:30
= render layout: 'projects/md_preview', locals: { preview_class: "md-preview", referenced_users: true } do
2016-09-13 17:45:13 +05:30
= render 'projects/zen', f: f,
attr: :note,
classes: 'note-textarea js-note-text',
placeholder: "Write a comment or drag your files here...",
supports_slash_commands: true
= render 'projects/notes/hints', supports_slash_commands: true
2015-04-26 12:48:37 +05:30
.error-alert
2014-09-02 18:07:02 +05:30
2015-12-23 02:04:40 +05:30
.note-form-actions.clearfix
2016-06-22 15:30:34 +05:30
= f.submit 'Comment', class: "btn btn-nr btn-create append-right-10 comment-btn js-comment-button"
2015-12-23 02:04:40 +05:30
= yield(:note_actions)
2016-06-02 11:05:42 +05:30
%a.btn.btn-cancel.js-note-discard{role: "button", data: {cancel_text: "Cancel"}}
Discard draft