summaryrefslogtreecommitdiffstats
path: root/app/views/projects/copy.rhtml
diff options
context:
space:
mode:
authorJean-Philippe Lang <jp_lang@yahoo.fr>2009-10-24 13:30:23 +0000
committerJean-Philippe Lang <jp_lang@yahoo.fr>2009-10-24 13:30:23 +0000
commit5b787785b47634a00e77f7a375bfc4c8cf5f0009 (patch)
treee042c13dc7cef29f536894e1b678e5b4bc2b9fc4 /app/views/projects/copy.rhtml
parent6842941adcaf450bb29f37b44ae8772123b92574 (diff)
downloadredmine-5b787785b47634a00e77f7a375bfc4c8cf5f0009.tar.gz
redmine-5b787785b47634a00e77f7a375bfc4c8cf5f0009.zip
Project copy: let the user choose what to copy from the source project (everything by default).
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2966 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/projects/copy.rhtml')
-rw-r--r--app/views/projects/copy.rhtml10
1 files changed, 10 insertions, 0 deletions
diff --git a/app/views/projects/copy.rhtml b/app/views/projects/copy.rhtml
index ac531e069..d03e4d0c9 100644
--- a/app/views/projects/copy.rhtml
+++ b/app/views/projects/copy.rhtml
@@ -12,5 +12,15 @@
<% end %>
</fieldset>
+<fieldset class="box"><legend><%= l(:button_copy) %></legend>
+ <label class="floating"><%= check_box_tag 'only[]', 'members', true %> <%= l(:label_member_plural) %></label>
+ <label class="floating"><%= check_box_tag 'only[]', 'versions', true %> <%= l(:label_version_plural) %></label>
+ <label class="floating"><%= check_box_tag 'only[]', 'issue_categories', true %> <%= l(:label_issue_category_plural) %></label>
+ <label class="floating"><%= check_box_tag 'only[]', 'issues', true %> <%= l(:label_issue_plural) %></label>
+ <label class="floating"><%= check_box_tag 'only[]', 'queries', true %> <%= l(:label_query_plural) %></label>
+ <label class="floating"><%= check_box_tag 'only[]', 'wiki', true %> <%= l(:label_wiki) %></label>
+ <%= hidden_field_tag 'only[]', '' %>
+</fieldset>
+
<%= submit_tag l(:button_copy) %>
<% end %>