22 lines
721 B
Text
22 lines
721 B
Text
.event-title
|
|
%span.author_name= link_to_author event
|
|
%span.event_label commented on #{event_note_title_html(event)} at
|
|
- if event.project
|
|
= link_to_project event.project
|
|
- else
|
|
= event.project_name
|
|
|
|
.event-body
|
|
.event-note
|
|
.md
|
|
%i.icon-comment-alt.event-note-icon
|
|
= event_note(event.target.note)
|
|
- note = event.target
|
|
- if note.attachment.url
|
|
- if note.attachment.image?
|
|
= link_to note.attachment.url, target: '_blank' do
|
|
= image_tag note.attachment.url, class: 'note-image-attach'
|
|
- else
|
|
= link_to note.attachment.secure_url, target: "_blank", class: 'note-file-attach' do
|
|
%i.icon-paper-clip
|
|
= note.attachment_identifier
|