2008-02-10 16:17:41 +03:00
|
|
|
<h2><%= l(:label_bulk_edit_selected_issues) %></h2>
|
2007-10-09 23:07:19 +04:00
|
|
|
|
2008-02-10 16:17:41 +03:00
|
|
|
<ul><%= @issues.collect {|i| content_tag('li', link_to(h("#{i.tracker} ##{i.id}"), { :action => 'show', :id => i }) + h(": #{i.subject}")) }.join("\n") %></ul>
|
|
|
|
|
|
|
|
<% form_tag() do %>
|
|
|
|
<%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %>
|
2010-01-03 14:37:04 +03:00
|
|
|
<div class="box tabular">
|
2008-02-10 16:17:41 +03:00
|
|
|
<fieldset>
|
|
|
|
<legend><%= l(:label_change_properties) %></legend>
|
2010-01-03 14:37:04 +03:00
|
|
|
|
|
|
|
<div class="splitcontentleft">
|
2007-10-09 23:07:19 +04:00
|
|
|
<p>
|
2010-01-03 14:37:04 +03:00
|
|
|
<label><%= l(:field_tracker) %></label>
|
|
|
|
<%= select_tag('tracker_id', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@project.trackers, :id, :name)) %>
|
|
|
|
</p>
|
2008-01-06 20:06:14 +03:00
|
|
|
<% if @available_statuses.any? %>
|
2010-01-03 14:37:04 +03:00
|
|
|
<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>
|
2007-10-12 19:55:06 +04:00
|
|
|
<% end %>
|
2010-01-03 14:37:04 +03:00
|
|
|
<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_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(@project.assignable_users, :id, :name)) %>
|
2009-11-29 23:00:21 +03:00
|
|
|
</p>
|
|
|
|
<p>
|
2010-01-03 14:37:04 +03:00
|
|
|
<label><%= l(:field_category) %></label>
|
|
|
|
<%= select_tag('category_id', content_tag('option', l(:label_no_change_option), :value => '') +
|
2008-03-27 01:22:45 +03:00
|
|
|
content_tag('option', l(:label_none), :value => 'none') +
|
2010-01-03 14:37:04 +03:00
|
|
|
options_from_collection_for_select(@project.issue_categories, :id, :name)) %>
|
2007-10-12 19:55:06 +04:00
|
|
|
</p>
|
|
|
|
<p>
|
2010-01-03 14:37:04 +03:00
|
|
|
<label><%= l(:field_fixed_version) %></label>
|
|
|
|
<%= select_tag('fixed_version_id', content_tag('option', l(:label_no_change_option), :value => '') +
|
2008-03-27 01:22:45 +03:00
|
|
|
content_tag('option', l(:label_none), :value => 'none') +
|
2010-01-03 14:37:04 +03:00
|
|
|
version_options_for_select(@project.shared_versions.open)) %>
|
2007-10-09 23:07:19 +04:00
|
|
|
</p>
|
|
|
|
|
2010-01-03 14:37:04 +03:00
|
|
|
<% @custom_fields.each do |custom_field| %>
|
|
|
|
<p><label><%= h(custom_field.name) %></label> <%= custom_field_tag_for_bulk_edit(custom_field) %></p>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="splitcontentright">
|
2007-10-09 23:07:19 +04:00
|
|
|
<p>
|
2010-01-03 14:37:04 +03:00
|
|
|
<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>
|
2009-12-11 21:48:34 +03:00
|
|
|
<% if Issue.use_field_for_done_ratio? %>
|
2010-01-03 14:37:04 +03:00
|
|
|
<p>
|
|
|
|
<label><%= l(:field_done_ratio) %></label>
|
|
|
|
<%= select_tag 'done_ratio', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %>
|
2007-10-09 23:07:19 +04:00
|
|
|
</p>
|
2009-01-25 19:04:28 +03:00
|
|
|
<% end %>
|
2010-01-03 14:37:04 +03:00
|
|
|
</div>
|
2009-01-25 19:04:28 +03:00
|
|
|
|
2007-10-09 23:07:19 +04:00
|
|
|
</fieldset>
|
2008-02-10 16:17:41 +03:00
|
|
|
|
|
|
|
<fieldset><legend><%= l(:field_notes) %></legend>
|
|
|
|
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %>
|
|
|
|
<%= wikitoolbar_for 'notes' %>
|
2009-02-03 20:15:59 +03:00
|
|
|
</fieldset>
|
2007-10-09 23:07:19 +04:00
|
|
|
</div>
|
2008-02-10 16:17:41 +03:00
|
|
|
|
2010-01-03 13:50:40 +03:00
|
|
|
<p><%= submit_tag l(:button_submit) %></p>
|
2008-02-10 16:17:41 +03:00
|
|
|
<% end %>
|