summaryrefslogtreecommitdiffstats
path: root/app/views/messages/edit.html.erb
blob: fdea28e87c41ae726a19f09cf33412a8fd5b746e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<%= breadcrumb link_to(l(:label_board_plural), project_boards_path(@project)),
               link_to(h(@board.name), project_board_path(@project, @board)) %>

<h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2>

<%= form_for @message, {
               :as => :message,
               :url => {:action => 'edit'},
               :html => {:multipart => true,
                         :id => 'message-form',
                         :method => :post}
          } do |f| %>
  <%= render :partial => 'form',
             :locals => {:f => f, :replying => !@message.parent.nil?} %>
  <%= submit_tag l(:button_save) %>
  <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board, :id => @message}, 'message-form') %>
<% end %>
<div id="preview" class="wiki"></div>