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

72 lines
3.0 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
2015-04-29 20:11:48 +00:00
%span= icon('circle')
2014-12-20 20:55:55 +00:00
- else
2015-03-24 17:16:40 +00:00
= link_to user_path(note.author) do
2015-04-29 20:11:48 +00:00
= image_tag avatar_icon(note.author_email), class: 'avatar s40', alt: ''
.timeline-content
.note-header
.note-actions
= link_to "##{dom_id(note)}", name: dom_id(note) do
2015-04-29 20:11:48 +00:00
= icon('link')
Link here
 
- if note_editable?(note)
2015-04-29 20:11:48 +00:00
= link_to '#', title: 'Edit comment', class: 'js-note-edit' do
= icon('pencil-square-o')
Edit
 
2015-04-29 20:11:48 +00:00
= link_to namespace_project_note_path(@project.namespace, @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
= icon('trash-o', class: 'cred')
Remove
2014-12-20 20:55:55 +00:00
- if note.system
2015-03-24 17:16:40 +00:00
= link_to user_path(note.author) do
2015-04-29 20:11:48 +00:00
= image_tag avatar_icon(note.author_email), class: 'avatar s16', alt: ''
= 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
2015-04-29 20:11:48 +00:00
= icon('thumbs-up')
2014-11-05 20:45:18 +00:00
\+1
- if note.downvote?
%span.vote.downvote.label.label-gray.strikethrough
2015-04-29 20:11:48 +00:00
= icon('thumbs-down')
2014-11-05 20:45:18 +00:00
\-1
- else
- if note.upvote?
%span.vote.upvote.label.label-success
2015-04-29 20:11:48 +00:00
= icon('thumbs-up')
2014-11-05 20:45:18 +00:00
\+1
- if note.downvote?
%span.vote.downvote.label.label-danger
2015-04-29 20:11:48 +00:00
= icon('thumbs-down')
2014-11-05 20:45:18 +00:00
\-1
2011-11-15 08:34:30 +00:00
.note-body{class: note_editable?(note) ? 'js-task-list-container' : ''}
.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?
2015-02-20 14:19:50 +00:00
= link_to note.attachment.url, target: '_blank' do
= image_tag note.attachment.url, class: 'note-image-attach'
.attachment
2015-04-29 20:11:48 +00:00
= link_to note.attachment.url, target: '_blank' do
= icon('paperclip')
= note.attachment_identifier
= link_to delete_attachment_namespace_project_note_path(@project.namespace, @project, note),
2015-04-29 20:11:48 +00:00
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
= icon('trash-o', class: 'cred')
.clear