20 lines
968 B
Plaintext
20 lines
968 B
Plaintext
<% if activity.attachments.any? %>
|
|
<% activity.attachments.each do |attachment| %>
|
|
<div class="break_word">
|
|
<span class="fl">
|
|
<span title="<%= attachment.filename %>" id="attachment_<%=attachment.id %>">
|
|
<%= link_to_short_attachment attachment,:length=> 58, :class => 'hidden link_file_a fl newsBlue mw380', :download => true %>
|
|
</span>
|
|
</span>
|
|
<span class="postAttSize">(
|
|
<%= number_to_human_size attachment.filesize %>)
|
|
</span>
|
|
<% user_name = attachment.author.show_name.empty? ? attachment.author : attachment.author.show_name %>
|
|
<span class="author" title="<%= user_name %>">
|
|
<%= link_to h(truncate(user_name, length: 15, omission: '...')),user_path(attachment.author),:class => "linkBlue2" %>,
|
|
<%= format_time(attachment.created_on) %>
|
|
</span>
|
|
</div>
|
|
<div class="cl"></div>
|
|
<% end %>
|
|
<% end %> |