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.

copy.html.erb 2.2KB

123456789101112131415161718192021222324252627282930
  1. <h2><%=l(:label_project_new)%></h2>
  2. <%= labelled_form_for @project, :url => { :action => "copy" } do |f| %>
  3. <%= render :partial => 'form', :locals => { :f => f } %>
  4. <fieldset class="box tabular"><legend><%= toggle_checkboxes_link('.box input[type="checkbox"][name="only[]"]') %><%= l(:button_copy) %></legend>
  5. <label class="block"><%= check_box_tag 'only[]', 'members', true, :id => nil %> <%= l(:label_member_plural) %> (<%= @source_project.members.count %>)</label>
  6. <label class="block"><%= check_box_tag 'only[]', 'versions', true, :id => nil %> <%= l(:label_version_and_files, @source_project.versions.count) %></label>
  7. <label class="block"><%= check_box_tag 'only[]', 'issue_categories', true, :id => nil %> <%= l(:label_issue_category_plural) %> (<%= @source_project.issue_categories.count %>)</label>
  8. <label class="block"><%= check_box_tag 'only[]', 'issues', true, :id => nil %> <%= l(:label_issue_plural) %> (<%= @source_project.issues.count %>)</label>
  9. <label class="block"><%= check_box_tag 'only[]', 'queries', true, :id => nil %> <%= l(:label_query_plural) %> (<%= @source_project.queries.count %>)</label>
  10. <label class="block"><%= check_box_tag 'only[]', 'documents', true, :id => nil %> <%= l(:label_document_plural) %> (<%= @source_project.documents.count %>)</label>
  11. <label class="block"><%= check_box_tag 'only[]', 'boards', true, :id => nil %> <%= l(:label_board_plural) %> (<%= @source_project.boards.count %>)</label>
  12. <label class="block"><%= check_box_tag 'only[]', 'wiki', true, :id => nil %> <%= l(:label_wiki_page_plural) %> (<%= @source_project.wiki.nil? ? 0 : @source_project.wiki.pages.count %>)</label>
  13. <%= call_hook :view_projects_copy_only_items, project: @source_project, f: f %>
  14. <%= hidden_field_tag 'only[]', '' %>
  15. <br />
  16. <label class="block"><%= check_box_tag 'notifications', 1, params[:notifications] %> <%= l(:label_project_copy_notifications) %></label>
  17. </fieldset>
  18. <% @project.tracker_ids.each do |tracker_id| %>
  19. <%= hidden_field_tag 'project[tracker_ids][]', tracker_id %>
  20. <% end %>
  21. <% @project.issue_custom_field_ids.each do |issue_custom_field_id| %>
  22. <%= hidden_field_tag 'project[issue_custom_field_ids][]', issue_custom_field_id %>
  23. <% end %>
  24. <%= submit_tag l(:button_copy) %>
  25. <% end %>