<% if @allowed_projects.present? %>
<%= select_tag('issue[project_id]', content_tag('option', l(:label_no_change_option), :value => '') + project_tree_options_for_select(@allowed_projects, :selected => @target_project),
:onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %>
<% end %>
<%= select_tag('issue[tracker_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@trackers, :id, :name)) %>
<% if @available_statuses.any? %>
<%= select_tag('issue[status_id]',content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(@available_statuses, :id, :name)) %>
<% end %>
<% if @safe_attributes.include?('priority_id') -%>
<%= select_tag('issue[priority_id]', content_tag('option', l(:label_no_change_option), :value => '') + options_from_collection_for_select(IssuePriority.active, :id, :name)) %>
<% end %>
<% if @safe_attributes.include?('assigned_to_id') -%>
<%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:label_nobody), :value => 'none') +
principals_options_for_select(@assignables)) %>
<% end %>
<% if @safe_attributes.include?('category_id') -%>
<%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:label_none), :value => 'none') +
options_from_collection_for_select(@categories, :id, :name)) %>
<% end %>
<% if @safe_attributes.include?('fixed_version_id') -%>
<%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:label_none), :value => 'none') +
version_options_for_select(@versions.sort)) %>
<% end %>
<% @custom_fields.each do |custom_field| %>
<%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %>
<% end %>
<% if @copy && @attachments_present %>
<%= check_box_tag 'copy_attachments', '1', true %>
<% end %>
<% if @copy && @subtasks_present %>
<%= check_box_tag 'copy_subtasks', '1', true %>
<% end %>
<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %>
<% if @safe_attributes.include?('is_private') %>
<%= select_tag('issue[is_private]', content_tag('option', l(:label_no_change_option), :value => '') +
content_tag('option', l(:general_text_Yes), :value => '1') +
content_tag('option', l(:general_text_No), :value => '0')) %>
<% end %>
<% if @safe_attributes.include?('parent_issue_id') && @project %>
<%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %>
<%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project)}')" %>
<% end %>
<% if @safe_attributes.include?('start_date') %>
<%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %>
<% end %>
<% if @safe_attributes.include?('due_date') %>
<%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %>
<% end %>
<% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %>
<%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %>
<% end %>