Chris@14:
Chris@14: <%= select_tag "new_project_id", Chris@14: project_tree_options_for_select(@allowed_projects, :selected => @target_project), Chris@14: :onchange => remote_function(:url => { :action => 'new' }, Chris@14: :method => :get, Chris@14: :update => 'content', Chris@14: :with => "Form.serialize('move_form')") %>
Chris@14: Chris@14:Chris@14: <%= select_tag "new_tracker_id", "" + options_from_collection_for_select(@trackers, "id", "name") %>
Chris@14: Chris@14:Chris@14: Chris@14: <%= select_tag('assigned_to_id', content_tag('option', l(:label_no_change_option), :value => '') + Chris@14: content_tag('option', l(:label_nobody), :value => 'none') + Chris@14: options_from_collection_for_select(@target_project.assignable_users, :id, :name)) %> Chris@14:
Chris@14: Chris@14:Chris@14: Chris@14: <%= select_tag('status_id', "" + options_from_collection_for_select(@available_statuses, :id, :name)) %> Chris@14:
Chris@14: Chris@14:Chris@14: Chris@14: <%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %> Chris@14:
Chris@14: Chris@14:Chris@14: Chris@14: <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %> Chris@14:
Chris@14: Chris@14: <%= call_hook(:view_issues_move_bottom, :issues => @issues, :target_project => @target_project, :copy => !!@copy) %> Chris@14: