gitlab-org--gitlab-foss/app/views/projects/notes/_note.html.haml

70 lines
2.8 KiB
Plaintext
Raw Normal View History

2015-01-15 06:42:58 +00:00
%li.timeline-entry{ id: dom_id(note), class: [dom_class(note), "note-row-#{note.id}", ('system-note' if note.system)], data: { discussion: note.discussion_id } }
.timeline-entry-inner
.timeline-icon
2014-12-20 20:55:55 +00:00
- if note.system
%span.fa.fa-circle
- else
= image_tag avatar_icon(note.author_email), class: "avatar s40"
.timeline-content
.note-header
.note-actions
= link_to "##{dom_id(note)}", name: dom_id(note) do
2014-10-01 22:21:29 +00:00
%i.fa.fa-link
Link here
 
- if can?(current_user, :admin_note, note) && note.editable?
= link_to "#", title: "Edit comment", class: "js-note-edit" do
2014-10-01 22:21:29 +00:00
%i.fa.fa-pencil-square-o
Edit
 
= link_to project_note_path(@project, note), title: "Remove comment", method: :delete, data: { confirm: 'Are you sure you want to remove this comment?' }, remote: true, class: "danger js-note-delete" do
2014-10-01 22:21:29 +00:00
%i.fa.fa-trash-o.cred
Remove
2014-12-20 20:55:55 +00:00
- if note.system
= image_tag avatar_icon(note.author_email), class: "avatar s16"
= link_to_member(@project, note.author, avatar: false)
%span.author-username
= '@' + note.author.username
%span.note-last-update
= note_timestamp(note)
2014-11-05 20:45:18 +00:00
- if note.superceded?(@notes)
- if note.upvote?
%span.vote.upvote.label.label-gray.strikethrough
%i.fa.fa-thumbs-up
\+1
- if note.downvote?
%span.vote.downvote.label.label-gray.strikethrough
%i.fa.fa-thumbs-down
\-1
- else
- if note.upvote?
%span.vote.upvote.label.label-success
%i.fa.fa-thumbs-up
\+1
- if note.downvote?
%span.vote.downvote.label.label-danger
%i.fa.fa-thumbs-down
\-1
2011-11-15 08:34:30 +00:00
.note-body
.note-text
= preserve do
= markdown(note.note, {no_header_anchors: true})
2015-01-15 06:42:58 +00:00
= render 'projects/notes/edit_form', note: note
2013-06-26 14:32:34 +00:00
- if note.attachment.url
.note-attachment
- if note.attachment.image?
= link_to note.attachment.secure_url, target: '_blank' do
= image_tag note.attachment.secure_url, class: 'note-image-attach'
.attachment
= link_to note.attachment.secure_url, target: "_blank" do
2014-10-01 22:21:29 +00:00
%i.fa.fa-paperclip
= note.attachment_identifier
= link_to delete_attachment_project_note_path(@project, note),
title: "Delete this attachment", method: :delete, remote: true, data: { confirm: 'Are you sure you want to remove the attachment?' }, class: "danger js-note-attachment-delete" do
2014-10-01 22:21:29 +00:00
%i.fa.fa-trash-o.cred
.clear