To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / projects / settings / _modules.html.erb @ 1592:72d9219f2f19

History | View | Annotate | Download (617 Bytes)

1
<%= form_for @project,
2
            :url => { :action => 'modules', :id => @project },
3
            :html => {:id => 'modules-form',
4
                      :method => :post} do |f| %>
5

    
6
<fieldset class="box">
7
<legend><%= l(:text_select_project_modules) %></legend>
8

    
9
<% Redmine::AccessControl.available_project_modules.each do |m| %>
10
<p><label><%= check_box_tag 'enabled_module_names[]', m, @project.module_enabled?(m), :id => nil -%>
11
 <%= l_or_humanize(m, :prefix => "project_module_") %></label></p>
12
<% end %>
13
</fieldset>
14
<p><%= check_all_links 'modules-form' %></p>
15

    
16
<p><%= submit_tag l(:button_save) %></p>
17

    
18
<% end %>