mirror of
https://github.com/meineerde/redmine.git
synced 2025-12-25 18:01:14 +00:00
Patch by Marius BALTEANU. git-svn-id: http://svn.redmine.org/redmine/trunk@17521 e93f8b46-1217-0410-a6f0-8f06a7374b81
16 lines
521 B
Plaintext
16 lines
521 B
Plaintext
<%= board_breadcrumb(@message) %>
|
|
|
|
<h2><%= avatar(@topic.author, :size => "24") %><%= @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) %>
|
|
<% end %>
|