<%#-- 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. ++#%> <%= call_hook(:view_work_packages_form_details_top, { :issue => work_package, :form => f }) %>
<%= f.select :type_id, work_package_form_type_selectable_types(project), {}, class: '-narrow' %> <%= observe_field :work_package_type_id, url: work_package_form_type_observable_url(work_package, project), update: :attributes, method: :get, with: "Form.serialize('work_package-form')" %>
<% if user_can_manage_subtasks?(project) %>
<%= f.text_field :parent_id, title: l(:description_autocomplete) %>
<% end %>
<% if user_can_manage_subtasks?(project) %>
<% end %>
<%= f.text_field :subject, required: true %>
<%= f.text_area :description, accesskey: accesskey(:edit), class: 'wiki-edit', rows: 10, :'ng-non-bindable' => '' %>
<%= render :partial => 'attributes', :locals => { :f => f, :work_package => work_package, :project => project, :priorities => priorities, :user => user } %>
<% if work_package.new_record? && User.current.allowed_to?(:add_work_package_watchers, project) -%> <% watcher_blocks = work_package.possible_watcher_users.sort.in_groups(3, false) %>
<%=l(:label_work_package_watchers)%>
<% watcher_blocks.each do |block| %>
<% block.each do |user| %>
<%= f.collection_check_box(:watcher_user_ids, user.id, work_package.watched_by?(user) && work_package.visible?(user), user.name, unchecked_value: nil) %>
<% end %>
<% end -%>
<% end %> <% if work_package.new_record? %> <%= render :partial => 'attachments/nested_form', locals: { open: true } %> <% end %> <%= call_hook(:view_work_packages_form_details_bottom, { :issue => work_package, :form => f }) %> <%= wikitoolbar_for 'work_package_description' %>