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

12 lines
749 B
Text
Raw Normal View History

2015-04-26 12:48:37 +05:30
.note-edit-form
2016-06-02 11:05:42 +05:30
= 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-04-26 12:48:37 +05:30
= note_target_fields(note)
2015-09-25 12:07:36 +05:30
= render layout: 'projects/md_preview', locals: { preview_class: 'md-preview' } do
2016-06-02 11:05:42 +05:30
= 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-09-11 14:41:01 +05:30
= render 'projects/notes/hints'
2015-04-26 12:48:37 +05:30
2016-06-02 11:05:42 +05:30
.note-form-actions.clearfix
2016-06-22 15:30:34 +05:30
= f.submit 'Save Comment', class: 'btn btn-nr btn-save js-comment-button'
2016-06-02 11:05:42 +05:30
%button.btn.btn-nr.btn-cancel.note-edit-cancel{ type: 'button' }
Cancel