comparison .svn/pristine/9c/9cc9a2ea51ca07fe0569f1c3d1472f322c6a7d0e.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
comparison
equal deleted inserted replaced
1297:0a574315af3e 1298:4f746d8966dd
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) -%>
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 %>