Commit 8e0b58d7 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

render note with attachment for event

parent ab191963
...@@ -52,6 +52,15 @@ ...@@ -52,6 +52,15 @@
padding-left: 5px; padding-left: 5px;
display: inline-block; display: inline-block;
color: #555; color: #555;
.note-file-attach {
margin-left: -25px;
float: left;
.note-image-attach {
margin-left: 0px;
max-width: 200px;
}
}
} }
.event-note-icon { .event-note-icon {
color: #777; color: #777;
......
...@@ -273,6 +273,7 @@ ul.notes { ...@@ -273,6 +273,7 @@ ul.notes {
} }
.note-form-actions { .note-form-actions {
background: #F9F9F9; background: #F9F9F9;
height: 45px; height: 45px;
......
...@@ -24,3 +24,10 @@ ...@@ -24,3 +24,10 @@
%i.icon-comment-alt.event-note-icon %i.icon-comment-alt.event-note-icon
%span.event-note %span.event-note
= markdown truncate(event.target.note, length: 70) = markdown truncate(event.target.note, length: 70)
- note = event.target
= link_to note.attachment.url, target: "_blank", class: 'note-file-attach' do
- if note.attachment.image?
= image_tag note.attachment.url, class: 'note-image-attach'
- else
%i.icon-paper-clip
= note.attachment_identifier
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment