<%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%=h @message.subject %>
<%= authoring @message.created_on, @message.author %>
<%= textilizable(@message.content, :attachments => @message.attachments) %>
<%= link_to_attachments @message.attachments, :no_author => true %>
<% @message.children.each do |message| %>
">
<%=h message.subject %> - <%= authoring message.created_on, message.author %>
<%= textilizable message.content %>
<%= link_to_attachments message.attachments, :no_author => true %>
<% end %>
<% if authorize_for('messages', 'reply') %>
<%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>
<% form_for :reply, @reply, :url => {:action => 'reply', :id => @message}, :html => {:multipart => true} do |f| %>
<%= render :partial => 'form', :locals => {:f => f} %>
<%= submit_tag l(:button_submit) %>
<% end %>
<% end %>