##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r13661:b778c51e9049
r15119:53710d80fc88
Show More
edit.html.erb
17 lines | 686 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
Jean-Philippe Lang
Removed unneeded #h calls in views....
r13661 <h2><%= avatar(@topic.author, :size => "24") %><%= @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>