2015-01-15 01:42:58 -05:00
|
|
|
.note-edit-form
|
2015-01-24 13:02:58 -05:00
|
|
|
= form_for note, url: namespace_project_note_path(@project.namespace, @project, note), method: :put, remote: true, authenticity_token: true 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
|
2015-10-05 18:20:43 -04:00
|
|
|
= render 'projects/zen', f: f, attr: :note, classes: 'note_text js-note-text js-task-list-field js-quick-submit'
|
2015-07-26 16:55:43 -04:00
|
|
|
= 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'
|