summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings/_modules.rhtml
blob: b4decf78a79a42b128d59e069545f3548689ee9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<% form_for :project, @project,
            :url => { :action => 'modules', :id => @project },
            :html => {:id => 'modules-form'} do |f| %>
            
<div class=box>
<strong><%= l(:text_select_project_modules) %></strong>

<% Redmine::AccessControl.available_project_modules.each do |m| %>
<p><label><%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) -%>
 <%= (l_has_string?("project_module_#{m}".to_sym) ? l("project_module_#{m}".to_sym) : m.to_s.humanize) %></label></p>
<% end %>
</div>

<p><%= check_all_links 'modules-form' %></p>
<p><%= submit_tag l(:button_save) %></p>

<% end %>