<%= select_tag "new_project_id",
project_tree_options_for_select(@allowed_projects, :selected => @target_project),
@@ -21,13 +25,6 @@
<%= select_tag "new_tracker_id", "" + options_from_collection_for_select(@trackers, "id", "name") %>
-
-
- <%= 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.assignable_users, :id, :name)) %>
-
-
<%= select_tag('status_id', "" + options_from_collection_for_select(@available_statuses, :id, :name)) %>
@@ -38,6 +35,15 @@
<%= select_tag('priority_id', "" + options_from_collection_for_select(IssuePriority.all, :id, :name)) %>
+
+
+ <%= 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.assignable_users, :id, :name)) %>
+
+
+
+
<%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %>
@@ -47,6 +53,9 @@
<%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %>
+
+
+