%= board_breadcrumb(@message) %>
<%= watcher_tag(@topic, User.current) %>
<% voted = User.current.voted_for?(@topic) %>
<%= link_to(
voted ? l(:button_questions_unvote) : l(:button_questions_vote),
{:controller => 'questions', :action => 'vote', :id => @topic},
:class => 'icon ' + (voted ? 'icon-vote' : 'icon-unvote')
) if User.current.allowed_to?(:vote_messages, @project) %>
<%= 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) %>
<%=h @topic.subject %>
<%= avatar(@topic.author, :size => "32") %>
<%= link_to_user @topic.author %>
<%= l(:label_questions_added_time, :value => time_tag(@topic.created_on)).html_safe %>
<%= textilizable(@topic, :content) %>
<%= link_to_attachments @topic, :author => false %>
<% unless @replies.empty? %>
<% @replies.each do |message| %>
">
<% liked = User.current.voted_for?(message) %>
<%= link_to(
message.count_votes_up > 0 ? "(#{message.count_votes_up})" : "",
{:controller => 'questions', :action => 'vote', :id => message},
:class => 'vote icon ' + (liked ? 'icon-vote' : 'icon-unvote')
) if true || User.current.allowed_to?(:vote_messages, @project) %>
<%= 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) %>
<% if Setting.gravatar_enabled? %>
<%= message_avatar = avatar(message.author, :size => "32") %>
<% end %>
<%= 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 => {:action => 'reply', :id => @topic}, :html => {:multipart => true, :id => 'message-form'} do |f| %>
<%= render :partial => 'form', :locals => {:f => f, :replying => true} %>
<%= submit_tag l(:button_submit) %>
<%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board}, 'message-form') %>
<% end %>
<% end %>
<% content_for :sidebar do %>
<%= l(:label_questions_message) %>
<%= l(:label_questions_related_messages) %>
<% end %>
<% html_title @topic.subject %>