##// END OF EJS Templates
not add empty header/footer to notification emails (#13482)...
not add empty header/footer to notification emails (#13482) Contributed by Max Horn. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@11721 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9959:bc153cb61df3
r11491:19f70c95d1ae
Show More
edit.html.erb
17 lines | 687 B | text/plain | TextLexer
Jean-Philippe Lang
Support for subforums (#3831)....
r9959 <%= board_breadcrumb(@message) %>
Jean-Philippe Lang
Same heading on message edit/show views....
r9920
<h2><%= avatar(@topic.author, :size => "24") %><%=h @topic.subject %></h2>
Jean-Philippe Lang
Forums enhancements:...
r913
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_for @message, {
:as => :message,
:url => {:action => 'edit'},
:html => {:multipart => true,
:id => 'message-form',
:method => :post}
} do |f| %>
Toshi MARUYAMA
code layout clean up app/views/messages/edit.html.erb...
r8381 <%= render :partial => 'form',
:locals => {:f => f, :replying => !@message.parent.nil?} %>
Jean-Philippe Lang
Forums enhancements:...
r913 <%= submit_tag l(:button_save) %>
Jean-Philippe Lang
Adds a helper for preview links....
r9848 <%= preview_link({:controller => 'messages', :action => 'preview', :board_id => @board, :id => @message}, 'message-form') %>
Jean-Philippe Lang
Forums enhancements:...
r913 <% end %>
Jean-Philippe Lang
Added preview for forum messages....
r1191 <div id="preview" class="wiki"></div>