summaryrefslogtreecommitdiffstats
path: root/app/views/projects/settings/_modules.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/projects/settings/_modules.html.erb')
-rw-r--r--app/views/projects/settings/_modules.html.erb18
1 files changed, 0 insertions, 18 deletions
diff --git a/app/views/projects/settings/_modules.html.erb b/app/views/projects/settings/_modules.html.erb
deleted file mode 100644
index c52741e5a..000000000
--- a/app/views/projects/settings/_modules.html.erb
+++ /dev/null
@@ -1,18 +0,0 @@
-<%= form_for @project,
- :url => { :action => 'modules', :id => @project },
- :html => {:id => 'modules-form',
- :method => :post} do |f| %>
-
-<fieldset class="box">
-<legend><%= l(:text_select_project_modules) %></legend>
-
-<% Redmine::AccessControl.available_project_modules.each do |m| %>
-<p><label><%= check_box_tag 'enabled_module_names[]', m, @project.module_enabled?(m), :id => nil -%>
- <%= l_or_humanize(m, :prefix => "project_module_") %></label></p>
-<% end %>
-</fieldset>
-<p><%= check_all_links 'modules-form' %></p>
-
-<p><%= submit_tag l(:button_save) %></p>
-
-<% end %>