diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-26 17:07:43 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2017-07-26 17:07:43 +0000 |
commit | 449d5e6d34d24c77225fa6f2f70933eea4c11840 (patch) | |
tree | 066599a7308f1596c20de745988ee4af9565b6c1 /app/views/projects/settings | |
parent | 33bf6dddf3a78b1ab12bbac3f3828c407c9ccd44 (diff) | |
download | redmine-449d5e6d34d24c77225fa6f2f70933eea4c11840.tar.gz redmine-449d5e6d34d24c77225fa6f2f70933eea4c11840.zip |
Removes the Modules tab in project settings (#26488).
Modules can now be select on the first tab, just like when creating a project.
git-svn-id: http://svn.redmine.org/redmine/trunk@16892 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects/settings')
-rw-r--r-- | app/views/projects/settings/_modules.html.erb | 18 |
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 %> |