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

12 lines
637 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 do |f|
= note_target_fields(note)
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
2015-04-29 16:56:50 -04:00
= render 'projects/zen', f: f, attr: :note, classes: 'note_text js-note-text js-task-list-field'
= render 'projects/notes/hints'
2015-01-15 01:42:58 -05:00
.note-form-actions
.buttons
2015-04-29 16:11:48 -04:00
= f.submit 'Save Comment', class: 'btn btn-primary btn-save btn-grouped js-comment-button'
= link_to 'Cancel', '#', class: 'btn btn-cancel note-edit-cancel'