<%#-- copyright OpenProject is an open source project management software. Copyright (C) 2012-2024 the OpenProject GmbH 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 COPYRIGHT and LICENSE files for more details. ++#%> <% html_title t(:label_bulk_edit_selected_work_packages) %>

<%= t(:label_bulk_edit_selected_work_packages) %>

<%= styled_form_tag(url_for(controller: '/work_packages/bulk', action: :update), method: :put, class: '-wide-labels') do %> <% @work_packages.each do |wp| %> <%= hidden_field_tag 'ids[]', wp.id %> <% end %> <%= back_url_hidden_field_tag %>
<%= t(:label_change_properties) %>
<%= styled_label_tag :work_package_type_id, WorkPackage.human_attribute_name(:type) %>
<%= styled_select_tag('work_package[type_id]', "".html_safe + options_from_collection_for_select(@types, :id, :name)) %>
<% if @available_statuses.any? %>
<%= styled_label_tag :work_package_status_id, WorkPackage.human_attribute_name(:status) %>
<%= styled_select_tag('work_package[status_id]', "".html_safe + options_from_collection_for_select(@available_statuses, :id, :name)) %>
<% else %>
<%= styled_label_tag :work_package_status_id, WorkPackage.human_attribute_name(:status) %>
<%= t('work_packages.move.no_common_statuses_exists') %>
<% end %>
<%= styled_label_tag :work_package_priority_id, WorkPackage.human_attribute_name(:priority) %>
<%= styled_select_tag('work_package[priority_id]', "".html_safe + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
<%= styled_label_tag :work_package_assigned_to_id, WorkPackage.human_attribute_name(:assigned_to) %>
<%= styled_select_tag('work_package[assigned_to_id]', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_nobody), value: 'none') + options_from_collection_for_select(@assignables, :id, :name)) %>
<%= styled_label_tag :work_package_responsible_id, WorkPackage.human_attribute_name(:responsible) %>
<%= styled_select_tag('work_package[responsible_id]', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_nobody), value: 'none') + options_from_collection_for_select(@responsibles, :id, :name)) %>
<% if @project %>
<%= styled_label_tag :work_package_category_id, WorkPackage.human_attribute_name(:category) %>
<%= styled_select_tag('work_package[category_id]', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_none), value: 'none') + options_from_collection_for_select(@project.categories, :id, :name)) %>
<% #TODO: allow editing versions when multiple projects %>
<%= styled_label_tag :work_package_version_id, WorkPackage.human_attribute_name(:version) %>
<%= styled_select_tag('work_package[version_id]', content_tag('option', t(:label_no_change_option), value: '') + content_tag('option', t(:label_none), value: 'none') + version_options_for_select(@project.shared_versions.with_status_open.order_by_semver_name)) %>
<%= styled_label_tag :work_package_budget_id, Budget.model_name.human %>
<%= styled_select_tag('work_package[budget_id]', content_tag('option', t(:label_no_change_option), :value => '') + content_tag('option', t(:label_none), :value => 'none') + options_from_collection_for_select(@project.budgets.order(Arel.sql('subject ASC')), :id, :subject)) %>
<% end %> <% @custom_fields.each do |custom_field| %>
<%= blank_custom_field_label_tag('work_package', custom_field) %>
<%= custom_field_tag_for_bulk_edit('work_package', custom_field, @project) %>
<% end %> <%= call_hook(:view_work_packages_bulk_edit_details_bottom, { work_packages: @work_packages }) %>
<%= styled_label_tag :work_package_subject, WorkPackage.human_attribute_name(:subject) %>
<%= styled_text_field_tag 'work_package[subject]', '', size: 10 %>
<% if @project && User.current.allowed_in_project?(:manage_subtasks, @project) %>
<%= styled_label_tag :work_package_parent_id, WorkPackage.human_attribute_name(:parent) %>
<%= styled_text_field_tag 'work_package[parent_id]', '', size: 10 %>
<% end %>
<%= styled_label_tag :work_package_start_date, WorkPackage.human_attribute_name(:start_date) %>
<%= angular_component_tag 'op-basic-single-date-picker', inputs: { id: "work_package_start_date", name: "work_package[start_date]" } %>
<%= styled_label_tag :work_package_due_date, WorkPackage.human_attribute_name(:due_date) %>
<%= angular_component_tag 'op-basic-single-date-picker', inputs: { id: "work_package_due_date", name: "work_package[due_date]" } %>
<%= Journal.human_attribute_name(:notes) %> <%= label_tag 'work_package_journal_notes', Journal.human_attribute_name(:notes), class: 'hidden-for-sighted' %> <%= styled_text_area_tag 'work_package[journal_notes]', @notes, class: 'wiki-edit', with_text_formatting: true %>

<%= send_notification_option %>

<%= styled_button_tag t(:button_submit), class: '-primary -with-icon icon-checkmark' %>

<% end %>