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

_note.html.haml « notes « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 70baa212d1002d787ab6f6e28346f86d77f3039f (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
%li{id: dom_id(note), class: "note"}
  = image_tag gravatar_icon(note.author.email), class: "avatar s32"
  %div.note-author
    %strong= note.author_name
    = link_to "##{dom_id(note)}", name: dom_id(note) do
      %cite.cgray
        = time_ago_in_words(note.updated_at)
        ago

    - unless note_for_main_target?(note)
      - if note.for_commit?
        %span.cgray
          on #{link_to note.noteable.short_id, project_commit_path(@project, note.noteable)}
          = link_to_commit_diff_line_note(note) if note.for_diff_line?

    -# only show vote if it's a note for the main target
    - if note_for_main_target?(note)
      - if note.upvote?
        %span.vote.upvote.label.label-success
          %i.icon-thumbs-up
          \+1
      - if note.downvote?
        %span.vote.downvote.label.label-error
          %i.icon-thumbs-down
          \-1

    -# remove button
    - if(note.author_id == current_user.id) || can?(current_user, :admin_note, @project)
      = link_to [@project, note], confirm: 'Are you sure?', method: :delete, remote: true, class: "cred delete-note btn very_small" do
        %i.icon-trash
        Remove

  %div.note-title
    = preserve do
      = markdown(note.note)
    - if note.attachment.url
      .right
        %div.file
          = link_to note.attachment_identifier, note.attachment.url, target: "_blank"
  .clear