annotate .svn/pristine/eb/eb93ec8172fa40acff3b40f1f28de22acda650a7.svn-base @ 929:5f33065ddc4b redmine-1.3

Update to Redmine SVN rev 9414 on 1.3-stable branch
author Chris Cannam
date Wed, 27 Jun 2012 14:54:18 +0100
parents cbb26bc654de
children
rev   line source
Chris@909 1 <h2><%=l(:label_project_new)%></h2>
Chris@909 2
Chris@909 3 <% labelled_tabular_form_for @project, :url => { :action => "copy" } do |f| %>
Chris@909 4 <%= render :partial => 'form', :locals => { :f => f } %>
Chris@909 5
Chris@909 6 <fieldset class="box"><legend><%= l(:button_copy) %></legend>
Chris@909 7 <label class="block"><%= check_box_tag 'only[]', 'members', true %> <%= l(:label_member_plural) %> (<%= @source_project.members.count %>)</label>
Chris@909 8 <label class="block"><%= check_box_tag 'only[]', 'versions', true %> <%= l(:label_version_plural) %> (<%= @source_project.versions.count %>)</label>
Chris@909 9 <label class="block"><%= check_box_tag 'only[]', 'issue_categories', true %> <%= l(:label_issue_category_plural) %> (<%= @source_project.issue_categories.count %>)</label>
Chris@909 10 <label class="block"><%= check_box_tag 'only[]', 'issues', true %> <%= l(:label_issue_plural) %> (<%= @source_project.issues.count %>)</label>
Chris@909 11 <label class="block"><%= check_box_tag 'only[]', 'queries', true %> <%= l(:label_query_plural) %> (<%= @source_project.queries.count %>)</label>
Chris@909 12 <label class="block"><%= check_box_tag 'only[]', 'boards', true %> <%= l(:label_board_plural) %> (<%= @source_project.boards.count %>)</label>
Chris@909 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>
Chris@909 14 <%= hidden_field_tag 'only[]', '' %>
Chris@909 15 <br />
Chris@909 16 <label class="block"><%= check_box_tag 'notifications', 1, params[:notifications] %> <%= l(:label_project_copy_notifications) %></label>
Chris@909 17 </fieldset>
Chris@909 18
Chris@909 19 <%= submit_tag l(:button_copy) %>
Chris@909 20 <% end %>