You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

message_posted.html.erb 553B

123456789101112
  1. <h1><%= @message.board.project.name %> - <%= @message.board.name %>: <%= link_to(@message.subject, @message_url) %></h1>
  2. <em><%= @message.author %></em>
  3. <%= textilizable(@message, :content, :only_path => false) %>
  4. <% if @message.attachments.any? -%>
  5. <fieldset class="attachments"><legend><%= l(:label_attachment_plural) %></legend>
  6. <% @message.attachments.each do |attachment| -%>
  7. <%= link_to_attachment attachment, :download => true, :only_path => false %> (<%= number_to_human_size(attachment.filesize) %>)<br />
  8. <% end -%>
  9. </fieldset>
  10. <% end -%>