<%= render :partial => 'action_menu' %>

<%=l(:label_workflow)%>

<%= form_tag({}, :id => 'workflow_copy_form') do %>
<%= l(:label_copy_source) %>

<%= select_tag('source_tracker_id', "" + "" + options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>

<%= select_tag('source_role_id', "" + "" + options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>

<%= l(:label_copy_target) %>

<%= select_tag 'target_tracker_ids', "" + options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %>

<%= select_tag 'target_role_ids', "" + options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>

<%= submit_tag l(:button_copy) %> <% end %>