mailr/themes/olive/views/messages/_attachment.html.erb
Wojciech Todryk fdd3019f55 devel
2011-09-03 13:07:40 +02:00

22 lines
537 B
Plaintext
Executable file

<td>
<%= link_to attachment.filename, messages_attachment_download_path(attachment.parent_id,attachment.idx) %>
</td>
<td>
<%= attachment.main_type %>/<%= attachment.sub_type %>
</td>
<td>
<%= attachment.charset %>
</td>
<td>
<%= attachment.content_transfer_encoding %>
</td>
<td>
<%= size_formatter(attachment.getSize) %>
</td>
<td>
<%= link_to t(:download), messages_attachment_download_path(attachment.parent_id,attachment.idx) %>
</td>
<td>
<%= link_to t(:view), messages_part_body_path(attachment.parent_id,attachment.idx) %>
</td>