mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-25 18:01:14 +00:00
Patch by Yuichi HARADA. git-svn-id: http://svn.redmine.org/redmine/trunk@19506 e93f8b46-1217-0410-a6f0-8f06a7374b81
12 lines
307 B
Plaintext
12 lines
307 B
Plaintext
<%= @message_url %>
|
|
<%= @message.author %>
|
|
|
|
<%= @message.content %>
|
|
|
|
<% if @message.attachments.any? -%>
|
|
---<%= l(:label_attachment_plural).ljust(37, '-') %>
|
|
<% @message.attachments.each do |attachment| -%>
|
|
<%= attachment.filename %> (<%= number_to_human_size(attachment.filesize) %>)
|
|
<% end -%>
|
|
<% end -%>
|