<%#-- copyright OpenProject is a project management system. Copyright (C) 2012-2015 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. ++#%>

<%= @copy ? l(:button_copy) : l(:button_move) %>

<%= styled_form_tag({action: 'create'}, id: 'move_form', class: '-wide-labels') do %> <%= @work_packages.collect {|i| hidden_field_tag('ids[]', i.id)}.join.html_safe %>
<%= l(:label_change_properties) %>
<%= styled_select_tag "new_project_id", project_tree_options_for_select(@allowed_projects, selected: @target_project), onchange: remote_function(url: { action: 'new' }, method: :get, update: 'content', with: "Form.serialize('move_form')") %>
<%= styled_select_tag("new_type_id", content_tag('option', l(:label_no_change_option), value: '') + options_from_collection_for_select(@types, "id", "name")) %>
<%= styled_select_tag('status_id', content_tag('option', l(:label_no_change_option), value: '') + options_from_collection_for_select(@available_statuses, :id, :name)) %>
<%= styled_select_tag('priority_id', content_tag('option', l(:label_no_change_option), value: '') + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
<%= styled_select_tag('assigned_to_id', content_tag('option', l(:label_no_change_option), value: '') + content_tag('option', l(:label_nobody), value: 'none') + options_from_collection_for_select(@target_project.possible_assignees, :id, :name)) %>
<%= styled_select_tag('responsible_id', content_tag('option', l(:label_no_change_option), value: '') + content_tag('option', l(:label_nobody), value: 'none') + options_from_collection_for_select(@target_project.possible_responsibles, :id, :name)) %>
<%= styled_text_field_tag 'start_date', '', size: 10 %><%= calendar_for('start_date') %>
<%= styled_text_field_tag 'due_date', '', size: 10 %><%= calendar_for('due_date') %>
<%= Journal.human_attribute_name(:notes) %> <%= label_tag 'notes', Journal.human_attribute_name(:notes), class: 'hidden-for-sighted' %> <%= styled_text_area_tag 'notes', @notes, cols: 60, rows: 10, class: 'wiki-edit' %> <%= wikitoolbar_for 'notes' %>
<%= call_hook(:view_work_packages_move_bottom, work_packages: @work_packages, target_project: @target_project, copy: !!@copy) %>
<% if @copy %> <%= hidden_field_tag("copy") %> <%= styled_submit_tag l(:button_copy), class: '-highlight' %> <%= styled_submit_tag l(:button_copy_and_follow), name: 'follow', class: '-highlight' %> <% else %> <%= styled_submit_tag l(:button_move), class: '-highlight' %> <%= styled_submit_tag l(:button_move_and_follow), name: 'follow', class: '-highlight' %> <% end %> <% end %> <% content_for :header_tags do %> <%= robot_exclusion_tag %> <% end %>