% breadcrumb_paths(
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_link(@topic, User.current) %>
<%= link_to_remote_if_authorized(l(:button_quote),
{ :url => {:action => 'quote', :id => @topic} ,
:method => :get },
{ :class => 'icon icon-comment'} ) unless @topic.locked? %>
<%= link_to(l(:button_edit),
edit_topic_path(@topic),
:class => 'icon icon-edit') if @message.editable_by?(User.current) %>
<%= link_to(l(:button_delete),
topic_path(@topic),
:method => :delete,
:confirm => l(:text_are_you_sure),
:class => 'icon icon-del') if @message.destroyable_by?(User.current) %>
<%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %>
<%= authoring @topic.created_on, @topic.author %>
<%= textilizable(@topic.content, :attachments => @topic.attachments) %>
<%= link_to_attachments @topic, :author => false %>
<% unless @replies.empty? %>
<% @replies.each do |message| %>
">
<%= link_to_remote_if_authorized(image_tag('quote.png'),
{ :url => {:action => 'quote', :id => message},
:method => :get },
:title => l(:button_quote),
:alt => l(:button_quote)) unless @topic.locked? %>
<%= link_to(image_tag('edit.png'),
{ :action => 'edit', :id => message },
:title => l(:button_edit),
:alt => l(:button_edit)) if message.editable_by?(User.current) %>
<%= link_to(image_tag('delete.png'),
{ :action => 'destroy', :id => message},
:method => :delete,
:confirm => l(:text_are_you_sure),
:title => l(:button_delete),
:alt => l(:button_delete)) if message.destroyable_by?(User.current) %>
<%= avatar(message.author, :size => "24") %>
<%= link_to h(message.subject), { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %>
-
<%= authoring message.created_on, message.author %>
<%= textilizable message, :content, :attachments => message.attachments %>
<%= link_to_attachments message, :author => false %>
<% end %>
<% end %>
<% if !@topic.locked? && authorize_for('messages', 'reply') %>
<%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %>
<%= form_for @reply, :as => :reply, :url => reply_to_topic_path(@topic), :html => {:multipart => true, :id => 'message-form'} do |f| %>
<%= render :partial => 'form', :locals => {:f => f, :replying => true} %>
<%= submit_tag l(:button_submit) %>
<%= link_to_remote l(:label_preview),
{ :url => { :controller => 'messages', :action => 'preview', :board_id => @board },
:method => 'post',
:update => 'preview',
:with => "Form.serialize('message-form')",
:complete => "Element.scrollTo('preview')"
}, :accesskey => accesskey(:preview) %>
<% end %>
<% end %>
<% html_title h(@topic.subject) %>