<%= breadcrumb link_to(l(:label_board_plural), {:controller => 'boards', :action => 'index', :project_id => @project}), link_to(h(@board.name), {:controller => 'boards', :action => 'show', :project_id => @project, :id => @board}) %>
<%= watcher_tag(@topic, User.current) %> <%= link_to_remote_if_authorized l(:button_quote), { :url => {:action => 'quote', :id => @topic} }, :class => 'icon icon-comment' %> <%= link_to(l(:button_edit), {:action => 'edit', :id => @topic}, :class => 'icon icon-edit') if @message.editable_by?(User.current) %> <%= link_to(l(:button_delete), {:action => 'destroy', :id => @topic}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del') if @message.destroyable_by?(User.current) %>

<%=h @topic.subject %>

<%= avatar(@topic.author, :size => "64") %>

<%= authoring @topic.created_on, @topic.author %>

<%= textilizable(@topic.content, :attachments => @topic.attachments) %>
<%= link_to_attachments @topic.attachments, :no_author => true %>

<% unless @replies.empty? %>

<%= l(:label_reply_plural) %>

<% @replies.each do |message| %>
">
<%= link_to_remote_if_authorized image_tag('comment.png'), { :url => {:action => 'quote', :id => message} }, :title => l(:button_quote) %> <%= link_to(image_tag('edit.png'), {:action => 'edit', :id => message}, :title => l(:button_edit)) if message.editable_by?(User.current) %> <%= link_to(image_tag('delete.png'), {:action => 'destroy', :id => message}, :method => :post, :confirm => l(:text_are_you_sure), :title => l(:button_delete)) if message.destroyable_by?(User.current) %>

<%=h message.subject %> - <%= authoring message.created_on, message.author %>

<%= avatar(message.author, :size => "32") %>
<%= textilizable message, :content, :attachments => message.attachments %>
<%= link_to_attachments message.attachments, :no_author => true %>
<% end %> <% end %> <% if !@topic.locked? && authorize_for('messages', 'reply') %>

<%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>

<% end %> <% content_for :header_tags do %> <%= stylesheet_link_tag 'scm' %> <% end %> <% html_title h(@topic.subject) %>