##// 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:

r12382:e9689f5fe326
r15119:53710d80fc88
Show More
_modules.html.erb
18 lines | 617 B | text/plain | TextLexer
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_for @project,
Jean-Philippe Lang
Added project module concept....
r714 :url => { :action => 'modules', :id => @project },
Toshi MARUYAMA
Rails3: view: use explicit post method at projects/settings/_modules.html.erb...
r8362 :html => {:id => 'modules-form',
:method => :post} do |f| %>
Toshi MARUYAMA
remove trailing white-spaces from app/views/projects/settings/_modules.html.erb...
r7098
Jean-Philippe Lang
Removed div around fieldset on project modules....
r11074 <fieldset class="box">
Eric Davis
Fixed some labels to be more accessible....
r3222 <legend><%= l(:text_select_project_modules) %></legend>
Jean-Philippe Lang
Added translation support for project modules names and a few other strings....
r1137
Jean-Philippe Lang
Added project module concept....
r714 <% Redmine::AccessControl.available_project_modules.each do |m| %>
Jean-Philippe Lang
Removes duplicate ids (#15485)....
r12382 <p><label><%= check_box_tag 'enabled_module_names[]', m, @project.module_enabled?(m), :id => nil -%>
Jean-Philippe Lang
Merged Rails 2.2 branch. Redmine now requires Rails 2.2.2....
r2430 <%= l_or_humanize(m, :prefix => "project_module_") %></label></p>
Jean-Philippe Lang
Added project module concept....
r714 <% end %>
Eric Davis
Fixed some labels to be more accessible....
r3222 </fieldset>
Jean-Philippe Lang
Added project module concept....
r714 <p><%= check_all_links 'modules-form' %></p>
Jean-Philippe Lang
Removed div around fieldset on project modules....
r11074
Jean-Philippe Lang
Added project module concept....
r714 <p><%= submit_tag l(:button_save) %></p>
<% end %>