gitlab-org--gitlab-foss/app/views/projects/notes/_edit_form.html.haml

14 lines
855 B
Plaintext
Raw Normal View History

2015-01-15 06:42:58 +00:00
.note-edit-form
2016-03-30 12:54:35 +00:00
= form_for note, url: namespace_project_note_path(@project.namespace, @project, note), method: :put, remote: true, authenticity_token: true, html: { class: 'edit-note common-note-form js-quick-submit' } do |f|
= note_target_fields(note)
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
= render 'projects/zen', f: f, attr: :note, classes: 'note-textarea js-note-text js-task-list-field', placeholder: "Write a comment or drag your files here..."
= render 'projects/notes/hints'
2015-01-15 06:42:58 +00:00
.note-form-actions.clearfix
= f.submit 'Save Comment', class: 'btn btn-nr btn-save js-comment-button'
%span.settings-message.note-edit-warning.js-edit-warning
Finish editing this message first!
2016-03-30 12:54:35 +00:00
%button.btn.btn-nr.btn-cancel.note-edit-cancel{ type: 'button' }
Cancel