2013-12-25 15:32:23 -05:00
|
|
|
= form_for [@project, @note], remote: true, html: { :'data-type' => 'json', multipart: true, id: nil, class: "new_note js-new-note-form common-note-form" }, authenticity_token: true do |f|
|
2012-12-02 14:47:09 -05:00
|
|
|
= note_target_fields
|
2012-12-22 19:03:57 -05:00
|
|
|
= f.hidden_field :commit_id
|
2012-12-02 14:47:09 -05:00
|
|
|
= f.hidden_field :line_code
|
|
|
|
= f.hidden_field :noteable_id
|
|
|
|
= f.hidden_field :noteable_type
|
|
|
|
|
2014-05-24 06:06:44 -04:00
|
|
|
%ul.nav.nav-tabs
|
|
|
|
%li.active
|
|
|
|
= link_to '#note-write-holder', class: 'js-note-write-button' do
|
|
|
|
Write
|
|
|
|
%li
|
|
|
|
= link_to '#note-preview-holder', class: 'js-note-preview-button', data: { url: preview_project_notes_path(@project) } do
|
|
|
|
Preview
|
|
|
|
%div
|
|
|
|
.note-write-holder
|
|
|
|
= f.text_area :note, size: 255, class: 'note_text js-note-text js-gfm-input markdown-area'
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2014-06-03 03:56:40 -04:00
|
|
|
.light.clearfix
|
2014-06-18 08:21:24 -04:00
|
|
|
.pull-left Comments are parsed with #{link_to "GitLab Flavored Markdown", help_page_path("markdown", "markdown"),{ target: '_blank', tabindex: -1 }}
|
|
|
|
.pull-right Attach images (JPG, PNG, GIF) by dragging & dropping or #{link_to "selecting them", '#', class: 'markdown-selector', tabindex: -1 }.
|
2014-06-03 03:56:40 -04:00
|
|
|
|
2014-05-24 06:06:44 -04:00
|
|
|
.note-preview-holder.hide
|
|
|
|
.js-note-preview
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2013-01-31 04:22:06 -05:00
|
|
|
.note-form-actions
|
|
|
|
.buttons
|
2014-02-20 06:05:33 -05:00
|
|
|
= f.submit 'Add Comment', class: "btn comment-btn btn-grouped js-comment-button"
|
2013-02-25 16:10:50 -05:00
|
|
|
= yield(:note_actions)
|
2013-01-31 04:22:06 -05:00
|
|
|
%a.btn.grouped.js-close-discussion-note-form Cancel
|
2012-12-02 14:47:09 -05:00
|
|
|
|
2013-01-31 04:22:06 -05:00
|
|
|
.note-form-option
|
2013-11-27 04:14:42 -05:00
|
|
|
%a.choose-btn.btn.js-choose-note-attachment-button
|
2013-01-31 04:22:06 -05:00
|
|
|
%i.icon-paper-clip
|
|
|
|
%span Choose File ...
|
|
|
|
|
|
|
|
%span.file_name.js-attachment-filename File name...
|
2014-01-01 14:42:42 -05:00
|
|
|
= f.file_field :attachment, class: "js-note-attachment-input hidden"
|
2013-01-31 04:22:06 -05:00
|
|
|
|
2014-05-23 04:22:00 -04:00
|
|
|
:javascript
|
|
|
|
window.project_image_path_upload = "#{upload_image_project_path @project}";
|