OpenProject is the leading open source project management software.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
openproject/app/views/projects/copy_from_admin.html.erb

74 lines
2.9 KiB

<%#-- copyright
OpenProject is a project management system.
Copyright (C) 2012-2013 the OpenProject Foundation (OPF)
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License version 3.
OpenProject is a fork of ChiliProject, which is a fork of Redmine. The copyright follows:
Copyright (C) 2006-2013 Jean-Philippe Lang
Copyright (C) 2010-2013 the ChiliProject Team
This program is free software; you can redistribute it and/or
modify it under the terms of the GNU General Public License
as published by the Free Software Foundation; either version 2
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
See doc/COPYRIGHT.rdoc for more details.
++#%>
<h2><%=l(:label_project_new)%></h2>
<%= labelled_tabular_form_for @project, :url => { :action => "copy" } do |f| %>
<%= render :partial => 'form', :locals => { :f => f, :renderTypes => true } %>
<fieldset class="box">
<legend><%= l(:button_copy) %></legend>
<label class="block">
<%= check_box_tag 'only[]', 'members', true %>
<%= "#{l(:label_member_plural)} (#{@source_project.members.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'versions', true %>
<%= "#{l(:label_version_plural)} (#{@source_project.versions.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'issue_categories', true %>
<%= "#{l(:label_work_package_category_plural)} (#{@source_project.issue_categories.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'work_packages', true %>
<%= "#{l(:label_work_package_plural)} (#{@source_project.work_packages.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'queries', true %>
<%= "#{l(:label_query_plural)} (#{@source_project.queries.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'boards', true %>
<%= "#{l(:label_board_plural)} (#{@source_project.boards.count})" %>
</label>
<label class="block">
<%= check_box_tag 'only[]', 'wiki', true %>
<%= "#{l(:label_wiki_page_plural)} (#{@source_project.wiki.nil? ? 0 : @source_project.wiki.pages.count})" %>
</label>
<%= hidden_field_tag 'only[]', '' %>
<br />
<label class="block">
<%= check_box_tag 'notifications', 1, params[:notifications] %>
<%= l(:label_project_copy_notifications) %>
</label>
</fieldset>
<%= submit_tag l(:button_copy) %>
<% end %>