@@ -1,29 +1,20 | |||
|
1 | 1 | <h2><%=l(:label_project_new)%></h2> |
|
2 | 2 | |
|
3 | 3 | <% labelled_tabular_form_for :project, @project, :url => { :action => "copy" } do |f| %> |
|
4 | 4 | <%= render :partial => 'form', :locals => { :f => f } %> |
|
5 | 5 | |
|
6 | <fieldset class="box"><legend><%= l(:label_module_plural) %></legend> | |
|
7 | <% Redmine::AccessControl.available_project_modules.each do |m| %> | |
|
8 | <label class="floating"> | |
|
9 | <%= check_box_tag 'enabled_modules[]', m, @project.module_enabled?(m) %> | |
|
10 | <%= l_or_humanize(m, :prefix => "project_module_") %> | |
|
11 | </label> | |
|
12 | <% end %> | |
|
13 | </fieldset> | |
|
14 | ||
|
15 | 6 | <fieldset class="box"><legend><%= l(:button_copy) %></legend> |
|
16 | 7 | <label class="block"><%= check_box_tag 'only[]', 'members', true %> <%= l(:label_member_plural) %> (<%= @source_project.members.count %>)</label> |
|
17 | 8 | <label class="block"><%= check_box_tag 'only[]', 'versions', true %> <%= l(:label_version_plural) %> (<%= @source_project.versions.count %>)</label> |
|
18 | 9 | <label class="block"><%= check_box_tag 'only[]', 'issue_categories', true %> <%= l(:label_issue_category_plural) %> (<%= @source_project.issue_categories.count %>)</label> |
|
19 | 10 | <label class="block"><%= check_box_tag 'only[]', 'issues', true %> <%= l(:label_issue_plural) %> (<%= @source_project.issues.count %>)</label> |
|
20 | 11 | <label class="block"><%= check_box_tag 'only[]', 'queries', true %> <%= l(:label_query_plural) %> (<%= @source_project.queries.count %>)</label> |
|
21 | 12 | <label class="block"><%= check_box_tag 'only[]', 'boards', true %> <%= l(:label_board_plural) %> (<%= @source_project.boards.count %>)</label> |
|
22 | 13 | <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> |
|
23 | 14 | <%= hidden_field_tag 'only[]', '' %> |
|
24 | 15 | <br /> |
|
25 | 16 | <label class="block"><%= check_box_tag 'notifications', 1, params[:notifications] %> <%= l(:label_project_copy_notifications) %></label> |
|
26 | 17 | </fieldset> |
|
27 | 18 | |
|
28 | 19 | <%= submit_tag l(:button_copy) %> |
|
29 | 20 | <% end %> |
General Comments 0
You need to be logged in to leave comments.
Login now