<%= board_breadcrumb(@message) %>
<%= watcher_link(@topic, User.current) %> <%= link_to( l(:button_quote), {:action => 'quote', :id => @topic}, :remote => true, :method => 'get', :class => 'icon icon-comment', :remote => true) if !@topic.locked? && authorize_for('messages', 'reply') %> <%= 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, :data => {: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) %>
<%= link_to_attachments @topic, :author => false %>

<% unless @replies.empty? %>

<%= l(:label_reply_plural) %> (<%= @reply_count %>)

<% @replies.each do |message| %>
">
<%= link_to( image_tag('comment.png'), {:action => 'quote', :id => message}, :remote => true, :method => 'get', :title => l(:button_quote)) if !@topic.locked? && authorize_for('messages', 'reply') %> <%= 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, :data => {:confirm => l(:text_are_you_sure)}, :title => 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 %>

<%= pagination_links_full @reply_pages, @reply_count, :per_page_links => false %>

<% end %> <% if !@topic.locked? && authorize_for('messages', 'reply') %>

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

<% end %> <% html_title @topic.subject %>