2015-10-15 16:17:48 +08:00
|
|
|
<% if @message.project %>
|
|
|
|
<%= form_for @message, {:as => :message,
|
|
|
|
:url => {:action => 'edit'},
|
|
|
|
:html => {:multipart => true,
|
|
|
|
:id => 'message-form',
|
|
|
|
:method => :post}
|
|
|
|
} do |f| %>
|
2015-12-24 11:58:00 +08:00
|
|
|
<%= render :partial => 'boards/project_message_edit',
|
|
|
|
:locals => {:f => f, :edit_mode => true, :topic => @message, :project => @message.project} %>
|
|
|
|
<!--<a href="#" onclick="submitProjectsBoard();" class="blue_btn fl c_white"><%#= l(:button_submit) %></a>-->
|
|
|
|
<%#= link_to l(:button_cancel), board_message_url(@message.board, @message.root, :r => (@message.parent_id && @message.id)), :class => "blue_btn grey_btn fl c_white" %>
|
2015-10-15 16:17:48 +08:00
|
|
|
<% end %>
|
2015-12-24 11:58:00 +08:00
|
|
|
|
2014-06-18 16:45:33 +08:00
|
|
|
<% elsif @message.course %>
|
2015-10-15 16:17:48 +08:00
|
|
|
<%= form_for @message, {
|
|
|
|
:as => :message,
|
|
|
|
:url => {:action => 'edit'},
|
|
|
|
:html => {:multipart => true,
|
|
|
|
:id => 'message-form',
|
|
|
|
:method => :post}
|
|
|
|
} do |f| %>
|
|
|
|
<%= render :partial => 'boards/course_message_edit',
|
2015-10-20 15:15:18 +08:00
|
|
|
:locals => {:f => f, :edit_mode => true, :topic => @message, :course => @message.course} %>
|
2015-10-15 16:17:48 +08:00
|
|
|
<% end %>
|
2014-06-18 16:45:33 +08:00
|
|
|
<% end %>
|
2013-08-01 10:33:49 +08:00
|
|
|
|
|
|
|
<div id="preview" class="wiki"></div>
|