2015-01-15 01:42:58 -05:00
|
|
|
.note-edit-form
|
2016-03-30 08:54:35 -04: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|
|
2015-03-02 18:05:23 -05:00
|
|
|
= note_target_fields(note)
|
2015-09-21 10:30:19 -04:00
|
|
|
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
|
2016-04-05 07:33:30 -04:00
|
|
|
= 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..."
|
2015-07-26 16:55:43 -04:00
|
|
|
= render 'projects/notes/hints'
|
2015-01-15 01:42:58 -05:00
|
|
|
|
2016-03-18 13:23:54 -04: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'
|
2016-03-30 08:54:35 -04:00
|
|
|
%button.btn.btn-nr.btn-cancel.note-edit-cancel{ type: 'button' }
|
|
|
|
Cancel
|