2007-05-13 21:09:56 +04:00
|
|
|
<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%=h @message.subject %></h2>
|
|
|
|
|
2007-09-24 23:54:48 +04:00
|
|
|
<p><span class="author"><%= authoring @message.created_on, @message.author %></span></p>
|
2007-05-13 21:09:56 +04:00
|
|
|
<div class="wiki">
|
2007-05-26 19:42:37 +04:00
|
|
|
<%= textilizable(@message.content, :attachments => @message.attachments) %>
|
2007-05-13 21:09:56 +04:00
|
|
|
</div>
|
2007-05-26 19:42:37 +04:00
|
|
|
<%= link_to_attachments @message.attachments, :no_author => true %>
|
2007-09-24 23:54:48 +04:00
|
|
|
<br />
|
2007-05-26 19:42:37 +04:00
|
|
|
|
2007-05-13 21:09:56 +04:00
|
|
|
<h3 class="icon22 icon22-comment"><%= l(:label_reply_plural) %></h3>
|
|
|
|
<% @message.children.each do |message| %>
|
|
|
|
<a name="<%= "message-#{message.id}" %>"></a>
|
|
|
|
<h4><%=h message.subject %> - <%= message.author.name %>, <%= format_time(message.created_on) %></h4>
|
2007-09-24 23:54:48 +04:00
|
|
|
<div class="wiki"><%= textilizable message.content %></div>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
|
|
|
|
2007-08-29 20:52:35 +04:00
|
|
|
<% if authorize_for('messages', 'reply') %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<p><%= toggle_link l(:button_reply), "reply", :focus => "reply_content" %></p>
|
|
|
|
<div id="reply" style="display:none;">
|
|
|
|
<%= error_messages_for 'message' %>
|
|
|
|
<% form_for :reply, @reply, :url => {:action => 'reply', :id => @message} do |f| %>
|
|
|
|
<p><%= f.text_field :subject, :required => true, :size => 60 %></p>
|
|
|
|
<p><%= f.text_area :content, :required => true, :cols => 80, :rows => 10 %></p>
|
|
|
|
<p><%= submit_tag l(:button_submit) %></p>
|
|
|
|
<% end %>
|
|
|
|
</div>
|
2007-05-26 19:42:37 +04:00
|
|
|
<% end %>
|