comparison .svn/pristine/ef/ef961a9ffa9b55d45d3173f3d5560d27a61925d0.svn-base @ 1296:038ba2d95de8 redmine-2.2

Fix redmine-2.2 branch update (add missing svn files)
author Chris Cannam
date Fri, 14 Jun 2013 09:05:06 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1296:038ba2d95de8
1 <%= render :partial => 'action_menu' %>
2
3 <h2><%=l(:label_workflow)%></h2>
4
5 <%= form_tag({}, :id => 'workflow_copy_form') do %>
6 <fieldset class="tabular box">
7 <legend><%= l(:label_copy_source) %></legend>
8 <p>
9 <label><%= l(:label_tracker) %></label>
10 <%= select_tag('source_tracker_id',
11 content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') +
12 content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') +
13 options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>
14 </p>
15 <p>
16 <label><%= l(:label_role) %></label>
17 <%= select_tag('source_role_id',
18 content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '') +
19 content_tag('option', "--- #{ l(:label_copy_same_as_target) } ---", :value => 'any') +
20 options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>
21 </p>
22 </fieldset>
23
24 <fieldset class="tabular box">
25 <legend><%= l(:label_copy_target) %></legend>
26 <p>
27 <label><%= l(:label_tracker) %></label>
28 <%= select_tag 'target_tracker_ids',
29 content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) +
30 options_from_collection_for_select(@trackers, 'id', 'name', @target_trackers && @target_trackers.map(&:id)), :multiple => true %>
31 </p>
32 <p>
33 <label><%= l(:label_role) %></label>
34 <%= select_tag 'target_role_ids',
35 content_tag('option', "--- #{l(:actionview_instancetag_blank_option)} ---", :value => '', :disabled => true) +
36 options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>
37 </p>
38 </fieldset>
39 <%= submit_tag l(:button_copy) %>
40 <% end %>