mailr/themes/olive/views/messages/_attachment.html.erb

20 lines
490 B
Plaintext
Raw Normal View History

2011-08-24 19:20:13 +02:00
<td>
2011-09-09 22:10:25 +02:00
<%= link_to attachment.filename_charseted, messages_attachment_download_path(attachment.parent_id,attachment.idx) %>
2011-08-24 19:20:13 +02:00
</td>
<td>
2011-09-03 13:07:40 +02:00
<%= attachment.main_type %>/<%= attachment.sub_type %>
2011-08-24 19:20:13 +02:00
</td>
<td>
<%= attachment.charset %>
</td>
<td>
2011-09-03 13:07:40 +02:00
<%= attachment.content_transfer_encoding %>
2011-08-24 19:20:13 +02:00
</td>
<td>
2011-09-03 13:07:40 +02:00
<%= size_formatter(attachment.getSize) %>
2011-08-28 18:01:37 +02:00
</td>
<td>
2011-09-09 22:10:25 +02:00
<%= link_to image_tag(current_theme_image_path('download.png')), messages_attachment_download_path(attachment.parent_id,attachment.idx) %>
2011-08-24 19:20:13 +02:00
</td>
2011-09-05 19:08:22 +02:00