%= render :partial => 'action_menu' %>
<%= l(:label_tracker) %> <%= select_tag('source_tracker_id', content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') + options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>
<%= l(:label_role) %> <%= select_tag('source_role_id', content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') + content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') + options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>
<%= l(:label_tracker) %> <%= select_tag 'target_tracker_ids', content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) + options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %>
<%= l(:label_role) %> <%= select_tag 'target_role_ids', content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) + options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>