To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / workflows / copy.html.erb @ 912:5e80956cc792

History | View | Annotate | Download (1.81 KB)

1 0:513646585e45 Chris
<%= render :partial => 'action_menu' %>
2
3
<h2><%=l(:label_workflow)%></h2>
4
5
<% form_tag({}, :id => 'workflow_copy_form') do %>
6 909:cbb26bc654de Chris
<fieldset class="tabular box">
7
<legend><%= l(:label_copy_source) %></legend>
8 0:513646585e45 Chris
<p>
9 909:cbb26bc654de Chris
  <label><%= l(:label_tracker) %></label>
10
  <%= select_tag('source_tracker_id',
11
                  "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
12
                  "<option value=\"any\">--- #{ l(:label_copy_same_as_target) } ---</option>" +
13
                  options_from_collection_for_select(@trackers, 'id', 'name', @source_tracker && @source_tracker.id)) %>
14 0:513646585e45 Chris
</p>
15
<p>
16 909:cbb26bc654de Chris
  <label><%= l(:label_role) %></label>
17
  <%= select_tag('source_role_id',
18
                  "<option value=\"\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
19
                  "<option value=\"any\">--- #{ l(:label_copy_same_as_target) } ---</option>" +
20
                  options_from_collection_for_select(@roles, 'id', 'name', @source_role && @source_role.id)) %>
21 0:513646585e45 Chris
</p>
22 909:cbb26bc654de Chris
</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
                  "<option value=\"\" disabled=\"disabled\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
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
                  "<option value=\"\" disabled=\"disabled\">--- #{l(:actionview_instancetag_blank_option)} ---</option>" +
36
                  options_from_collection_for_select(@roles, 'id', 'name', @target_roles && @target_roles.map(&:id)), :multiple => true %>
37
</p>
38
</fieldset>
39 0:513646585e45 Chris
<%= submit_tag l(:button_copy) %>
40
<% end %>