summaryrefslogtreecommitdiffstats
path: root/app/views/issue_moves/new.rhtml
blob: c51399eb6dfc0e24abb585cbaaa803a4efa82435 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<h2><%= @copy ? l(:button_copy) : l(:button_move) %></h2>

<ul>
<% @issues.each do |issue| -%>
	<li><%= link_to_issue issue %></li>
<% end -%>
</ul>

<% form_tag({:action => 'create'}, :id => 'move_form') do %>
<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>

<div class="box tabular">
<p><label for="new_project_id"><%=l(:field_project)%>:</label>
<%= select_tag "new_project_id",
               project_tree_options_for_select(@allowed_projects, :selected => @target_project),
               :onchange => remote_function(:url => { :action => 'new' },
                                            :method => :get,
                                            :update => 'content',
                                            :with => "Form.serialize('move_form')") %></p>

<p><label for="new_tracker_id"><%=l(:field_tracker)%>:</label>
<%= select_tag "new_tracker_id", "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, "id", "name") %></p>

<p>
  <label><%= l(:field_assigned_to) %></label>
  <%= 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)) %>
</p>

<p>
  <label><%= l(:field_status) %></label>
  <%= select_tag('status_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %>
</p>

<p>
  <label><%= l(:field_priority) %></label>
  <%= select_tag('priority_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.all, :id, :name)) %>
</p>

<p>
  <label><%= l(:field_start_date) %></label>
  <%= text_field_tag 'start_date', '', :size => 10 %><%= calendar_for('start_date') %>
</p>

<p>
  <label><%= l(:field_due_date) %></label>
  <%= text_field_tag 'due_date', '', :size => 10 %><%= calendar_for('due_date') %>
</p>

<fieldset><legend><%= l(:field_notes) %></legend>
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
<%= wikitoolbar_for 'notes' %>
</fieldset>

<%= call_hook(:view_issues_move_bottom, :issues => @issues, :target_project => @target_project, :copy => !!@copy) %>
</div>

<% if @copy %>
	<%= hidden_field_tag("copy_options[copy]", "1") %>
	<%= submit_tag l(:button_copy) %>
	<%= submit_tag l(:button_copy_and_follow), :name => 'follow' %>
<% else %>
	<%= submit_tag l(:button_move) %>
	<%= submit_tag l(:button_move_and_follow), :name => 'follow' %>
<% end %>
<% end %>