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

12 lines
653 B
Text
Raw Normal View History

2015-04-26 12:48:37 +05:30
.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)
2015-09-25 12:07:36 +05:30
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
2015-10-24 18:46:33 +05:30
= render 'projects/zen', f: f, attr: :note, classes: 'note_text js-note-text js-task-list-field js-quick-submit'
2015-09-11 14:41:01 +05:30
= render 'projects/notes/hints'
2015-04-26 12:48:37 +05:30
.note-form-actions
.buttons
2015-09-11 14:41:01 +05:30
= 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'