bulk_edit.html.erb
91 lines
| 4.0 KiB
| text/plain
|
TextLexer
|
r1116 | <h2><%= l(:label_bulk_edit_selected_issues) %></h2> | ||
|
r806 | |||
|
r1116 | <ul><%= @issues.collect {|i| content_tag('li', link_to(h("#{i.tracker} ##{i.id}"), { :action => 'show', :id => i }) + h(": #{i.subject}")) }.join("\n") %></ul> | ||
|
r3923 | <% form_tag(:action => 'bulk_update') do %> | ||
|
r1116 | <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join %> | ||
|
r3165 | <div class="box tabular"> | ||
|
r3365 | <fieldset class="attributes"> | ||
|
r1116 | <legend><%= l(:label_change_properties) %></legend> | ||
|
r3165 | |||
<div class="splitcontentleft"> | ||||
|
r806 | <p> | ||
|
r7559 | <label for="issue_tracker_id"><%= l(:field_tracker) %></label> | ||
|
r7226 | <%= select_tag('issue[tracker_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@trackers, :id, :name)) %> | ||
|
r3165 | </p> | ||
|
r1030 | <% if @available_statuses.any? %> | ||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_status_id'><%= l(:field_status) %></label> | ||
|
r7226 | <%= select_tag('issue[status_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(@available_statuses, :id, :name)) %> | ||
|
r3165 | </p> | ||
|
r820 | <% end %> | ||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_priority_id'><%= l(:field_priority) %></label> | ||
|
r7226 | <%= select_tag('issue[priority_id]', "<option value=\"\">#{l(:label_no_change_option)}</option>" + options_from_collection_for_select(IssuePriority.active, :id, :name)) %> | ||
|
r3165 | </p> | ||
<p> | ||||
|
r7559 | <label for='issue_assigned_to_id'><%= l(:field_assigned_to) %></label> | ||
|
r7226 | <%= select_tag('issue[assigned_to_id]', content_tag('option', l(:label_no_change_option), :value => '') + | ||
|
r3165 | content_tag('option', l(:label_nobody), :value => 'none') + | ||
|
r6187 | principals_options_for_select(@assignables)) %> | ||
|
r2995 | </p> | ||
|
r4128 | <% if @project %> | ||
|
r2995 | <p> | ||
|
r7559 | <label for='issue_category_id'><%= l(:field_category) %></label> | ||
|
r7226 | <%= select_tag('issue[category_id]', content_tag('option', l(:label_no_change_option), :value => '') + | ||
|
r1279 | content_tag('option', l(:label_none), :value => 'none') + | ||
|
r3165 | options_from_collection_for_select(@project.issue_categories, :id, :name)) %> | ||
|
r820 | </p> | ||
|
r4128 | <% end %> | ||
<% #TODO: allow editing versions when multiple projects %> | ||||
<% if @project %> | ||||
|
r820 | <p> | ||
|
r7559 | <label for='issue_fixed_version_id'><%= l(:field_fixed_version) %></label> | ||
|
r7226 | <%= select_tag('issue[fixed_version_id]', content_tag('option', l(:label_no_change_option), :value => '') + | ||
|
r1279 | content_tag('option', l(:label_none), :value => 'none') + | ||
|
r4419 | version_options_for_select(@project.shared_versions.open.sort)) %> | ||
|
r806 | </p> | ||
|
r4128 | <% end %> | ||
|
r806 | |||
|
r3165 | <% @custom_fields.each do |custom_field| %> | ||
|
r7559 | <p><label><%= h(custom_field.name) %> <%= custom_field_tag_for_bulk_edit('issue', custom_field, @projects) %></label></p> | ||
|
r3165 | <% end %> | ||
<%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> | ||||
</div> | ||||
<div class="splitcontentright"> | ||||
|
r5104 | <% if @project && User.current.allowed_to?(:manage_subtasks, @project) %> | ||
<p> | ||||
|
r7559 | <label for='issue_parent_issue_id'><%= l(:field_parent_issue) %></label> | ||
|
r7226 | <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10 %> | ||
|
r5104 | </p> | ||
<div id="parent_issue_candidates" class="autocomplete"></div> | ||||
<%= javascript_tag "observeParentIssueField('#{auto_complete_issues_path(:project_id => @project) }')" %> | ||||
<% end %> | ||||
|
r806 | <p> | ||
|
r7559 | <label for='issue_start_date'><%= l(:field_start_date) %></label> | ||
|
r7226 | <%= text_field_tag 'issue[start_date]', '', :size => 10 %><%= calendar_for('issue_start_date') %> | ||
|
r3165 | </p> | ||
<p> | ||||
|
r7559 | <label for='issue_due_date'><%= l(:field_due_date) %></label> | ||
|
r7226 | <%= text_field_tag 'issue[due_date]', '', :size => 10 %><%= calendar_for('issue_due_date') %> | ||
|
r3165 | </p> | ||
|
r3037 | <% if Issue.use_field_for_done_ratio? %> | ||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_done_ratio'><%= l(:field_done_ratio) %></label> | ||
|
r7226 | <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }) %> | ||
|
r806 | </p> | ||
|
r2314 | <% end %> | ||
|
r3165 | </div> | ||
|
r2314 | |||
|
r806 | </fieldset> | ||
|
r1116 | |||
<fieldset><legend><%= l(:field_notes) %></legend> | ||||
<%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> | ||||
<%= wikitoolbar_for 'notes' %> | ||||
|
r2356 | </fieldset> | ||
|
r806 | </div> | ||
|
r1116 | |||
|
r3163 | <p><%= submit_tag l(:button_submit) %></p> | ||
|
r1116 | <% end %> | ||