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

11 lines
679 B
Text
Raw Normal View History

2015-01-15 01:42:58 -05:00
.note-edit-form
= form_for note, url: namespace_project_note_path(@project.namespace, @project, note), method: :put, remote: true, authenticity_token: true, html: { class: 'edit-note js-quick-submit' } do |f|
= note_target_fields(note)
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
2016-03-30 03:28:06 -04:00
= render 'projects/zen', f: f, attr: :note, classes: 'note-textarea js-note-text js-task-list-field'
= render 'projects/notes/hints'
2015-01-15 01:42:58 -05:00
.note-form-actions.clearfix
2016-01-08 15:16:58 -05:00
= f.submit 'Save Comment', class: 'btn btn-nr btn-save btn-grouped js-comment-button'
= link_to 'Cancel', '#', class: 'btn btn-nr btn-cancel note-edit-cancel'