OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/messages/edit.html.erb

14 lines
670 B

<h2><%= link_to h(@board.name), :controller => 'boards', :action => 'show', :project_id => @project, :id => @board %> &#187; <%=h @message.subject %></h2>
<%= form_for @message,
:url => topic_path(@message),
:method => :put,
:html => {:multipart => true, :id => 'message-form'} do |f| %>
<%= render :partial => 'form', :locals => {:f => f, :replying => !@message.parent.nil?} %>
<%= submit_tag l(:button_save) %>
<%= link_to l(:label_preview),
preview_topic_path(@message),
:class => 'preview',
:id => 'message-form-preview' %>
<% end %>
<div id="preview" class="wiki"></div>