##// END OF EJS Templates
Moved syntax highlight styles to application.css....
Moved syntax highlight styles to application.css. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10094 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9911:93a65c3c8227
r9911:93a65c3c8227
Show More
edit.html.erb
17 lines | 763 B | text/plain | TextLexer
Toshi MARUYAMA
code layout clean up app/views/messages/edit.html.erb...
r8381 <h2><%= link_to h(@board.name), :controller => 'boards',
:action => 'show', :project_id => @project,
:id => @board %> &#187; <%= h @message.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>