Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_form.html.haml « notes « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f008712c52941aeaea69cd98dc1f74e752ea4805 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
= form_for [@project, @note], remote: true, html: { multipart: true, id: nil, class: "new_note js-new-note-form" } do |f|

  = note_target_fields
  = f.hidden_field :commit_id
  = f.hidden_field :line_code
  = f.hidden_field :noteable_id
  = f.hidden_field :noteable_type

  .note_text_and_preview.js-toggler-container
    %a.js-note-preview-button.js-toggler-target.turn-off{ href: "javascript:;", title: "Preview", data: {url: preview_project_notes_path(@project)} }
      %i.icon-eye-open
    %a.js-note-edit-button.js-toggler-target.turn-off{ href: "javascript:;", title: "Edit" }
      %i.icon-edit

    = f.text_area :note, size: 255, class: 'note_text js-note-text js-gfm-input turn-on'
    .note_preview.js-note-preview.turn-off

  .buttons
    = f.submit 'Add Comment', class: "btn comment-btn grouped js-comment-button"
    %a.btn.grouped.js-close-discussion-note-form Cancel
  .hint
    .pull-right Comments are parsed with #{link_to "GitLab Flavored Markdown", help_markdown_path, target: '_blank'}.
  .clearfix

  .note_options
    .attachment
      %h6 Attachment:
      .file_name.js-attachment-filename File name...
      %a.choose-btn.btn.btn-small.js-choose-note-attachment-button Choose File ...
      .hint Any file up to 10 MB

      = f.file_field :attachment, class: "js-note-attachment-input"

    .notify_options
      %h6 Notify via email:
      = label_tag :notify do
        = check_box_tag :notify, 1, !@note.for_commit?
        Project team

      .js-notify-commit-author
        = label_tag :notify_author do
          = check_box_tag :notify_author, 1 , @note.for_commit?
          Commit author
  .clearfix