<%= board_breadcrumb(@message) %>
<%= watcher_link(@topic, User.current) %> <%= quote_reply_button( url: url_for(action: 'quote', id: @topic, format: 'js') ) if !@topic.locked? && authorize_for('messages', 'reply') %> <%= link_to( sprite_icon('edit', l(:button_edit)), { :action => 'edit', :id => @topic }, :class => 'icon icon-edit' ) if @message.editable_by?(User.current) %> <%= link_to( sprite_icon('del', 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) %><%= @topic.subject %>

<%= reaction_button @topic %>

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

<%= textilizable(@topic, :content) %>
<%= link_to_attachments @topic, :author => false, :thumbnails => true %>

<% unless @replies.empty? %>

<%= sprite_icon('comments', l(:label_reply_plural)) %> (<%= @reply_count %>)

<% if !@topic.locked? && authorize_for('messages', 'reply') && @replies.size >= 3 %>

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

<% end %> <% @replies.each do |message| %>
" data-controller="quote-reply">

<%= avatar(message.author) %> <%= link_to message.subject, { :controller => 'messages', :action => 'show', :board_id => @board, :id => @topic, :r => message, :anchor => "message-#{message.id}" } %> - <%= authoring message.created_on, message.author %> <%= reaction_button message %> <%= quote_reply_button( url: url_for(action: 'quote', id: message, format: 'js'), icon_only: true ) if !@topic.locked? && authorize_for('messages', 'reply') %> <%= link_to( sprite_icon('edit', l(:button_edit), icon_only: true), { :action => 'edit', :id => message }, :title => l(:button_edit), :class => 'icon icon-edit' ) if message.editable_by?(User.current) %> <%= link_to( sprite_icon('del', l(:button_delete), icon_only: true), { :action => 'destroy', :id => message }, :method => :post, :data => { :confirm => l(:text_are_you_sure) }, :title => l(:button_delete), :class => 'icon icon-del' ) if message.destroyable_by?(User.current) %>

<%= textilizable message, :content, :attachments => message.attachments %>
<%= link_to_attachments message, :author => false, :thumbnails => true %>
<% 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 %> <% content_for :sidebar do %> <% if User.current.allowed_to?(:add_message_watchers, @project) || (@topic.watchers.present? && User.current.allowed_to?(:view_message_watchers, @project)) %>
<%= render :partial => 'watchers/watchers', :locals => { :watched => @topic } %>
<% end %> <% end %>