2007-11-24 15:25:07 +03:00
|
|
|
<div class="contextual">
|
|
|
|
<%= link_to_if_authorized l(:button_edit), {:action => 'edit', :id => @topic}, :class => 'icon icon-edit' %>
|
|
|
|
<%= link_to_if_authorized l(:button_delete), {:action => 'destroy', :id => @topic}, :method => :post, :confirm => l(:text_are_you_sure), :class => 'icon icon-del' %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> » <%=h @topic.subject %></h2>
|
2007-05-13 21:09:56 +04:00
|
|
|
|
2007-11-22 22:19:47 +03:00
|
|
|
<div class="message">
|
2007-11-24 15:25:07 +03:00
|
|
|
<p><span class="author"><%= authoring @topic.created_on, @topic.author %></span></p>
|
2007-05-13 21:09:56 +04:00
|
|
|
<div class="wiki">
|
2007-11-24 15:25:07 +03:00
|
|
|
<%= textilizable(@topic.content, :attachments => @topic.attachments) %>
|
2007-05-13 21:09:56 +04:00
|
|
|
</div>
|
2007-11-24 15:25:07 +03:00
|
|
|
<%= link_to_attachments @topic.attachments, :no_author => true %>
|
2007-11-22 22:19:47 +03:00
|
|
|
</div>
|
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>
|
2008-03-05 18:41:54 +03:00
|
|
|
<% @replies.each do |message| %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<a name="<%= "message-#{message.id}" %>"></a>
|
2007-11-24 15:25:07 +03:00
|
|
|
<div class="contextual">
|
2008-03-05 18:41:54 +03:00
|
|
|
<%= link_to_if_authorized image_tag('edit.png'), {:action => 'edit', :id => message}, :title => l(:button_edit) %>
|
|
|
|
<%= link_to_if_authorized image_tag('delete.png'), {:action => 'destroy', :id => message}, :method => :post, :confirm => l(:text_are_you_sure), :title => l(:button_delete) %>
|
2007-11-24 15:25:07 +03:00
|
|
|
</div>
|
|
|
|
<div class="message reply">
|
2007-11-22 22:19:47 +03:00
|
|
|
<h4><%=h message.subject %> - <%= authoring message.created_on, message.author %></h4>
|
2007-09-24 23:54:48 +04:00
|
|
|
<div class="wiki"><%= textilizable message.content %></div>
|
2007-11-22 22:19:47 +03:00
|
|
|
<%= link_to_attachments message.attachments, :no_author => true %>
|
2007-11-24 15:25:07 +03:00
|
|
|
</div>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
|
|
|
|
2007-11-24 15:25:07 +03:00
|
|
|
<% if !@topic.locked? && authorize_for('messages', 'reply') %>
|
2007-11-22 22:19:47 +03:00
|
|
|
<p><%= toggle_link l(:button_reply), "reply", :focus => 'message_content' %></p>
|
2007-05-13 21:09:56 +04:00
|
|
|
<div id="reply" style="display:none;">
|
2008-03-07 20:49:44 +03:00
|
|
|
<% form_for :reply, @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) %>
|
|
|
|
<%= 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) %>
|
2007-05-13 21:09:56 +04:00
|
|
|
<% end %>
|
2008-03-07 20:49:44 +03:00
|
|
|
<div id="preview" class="wiki"></div>
|
2007-05-13 21:09:56 +04:00
|
|
|
</div>
|
2007-05-26 19:42:37 +04:00
|
|
|
<% end %>
|