_modules.rhtml
16 lines
| 546 B
| text/html+ruby
|
RhtmlLexer
|
r714 | <% form_for :project, @project, | ||
:url => { :action => 'modules', :id => @project }, | ||||
:html => {:id => 'modules-form'} do |f| %> | ||||
<div class=box> | ||||
|
r736 | <strong>Select modules to enable for this project:</strong> | ||
<br /> | ||||
|
r714 | <% Redmine::AccessControl.available_project_modules.each do |m| %> | ||
<p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> <%= m.to_s.humanize %></label></p> | ||||
<% end %> | ||||
</div> | ||||
<p><%= check_all_links 'modules-form' %></p> | ||||
<p><%= submit_tag l(:button_save) %></p> | ||||
<% end %> | ||||