bulk_edit.html.erb
215 lines
| 8.9 KiB
| text/plain
|
TextLexer
|
r8418 | <h2><%= @copy ? l(:button_copy) : l(:label_bulk_edit_selected_issues) %></h2> | ||
|
r806 | |||
|
r11556 | <% if @saved_issues && @unsaved_issues.present? %> | ||
<div id="errorExplanation"> | ||||
<span> | ||||
<%= l(:notice_failed_to_save_issues, | ||||
:count => @unsaved_issues.size, | ||||
:total => @saved_issues.size, | ||||
:ids => @unsaved_issues.map {|i| "##{i.id}"}.join(', ')) %> | ||||
</span> | ||||
<ul> | ||||
<% bulk_edit_error_messages(@unsaved_issues).each do |message| %> | ||||
<li><%= message %></li> | ||||
<% end %> | ||||
</ul> | ||||
</div> | ||||
<% end %> | ||||
|
r10841 | <ul id="bulk-selection"> | ||
|
r10840 | <% @issues.each do |issue| %> | ||
<%= content_tag 'li', link_to_issue(issue) %> | ||||
<% end %> | ||||
</ul> | ||||
|
r1116 | |||
|
r10841 | <%= form_tag(bulk_update_issues_path, :id => 'bulk_edit_form') do %> | ||
|
r13262 | <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %> | ||
|
r3165 | <div class="box tabular"> | ||
|
r3365 | <fieldset class="attributes"> | ||
|
r1116 | <legend><%= l(:label_change_properties) %></legend> | ||
|
r3165 | |||
<div class="splitcontentleft"> | ||||
|
r8416 | <% if @allowed_projects.present? %> | ||
<p> | ||||
<label for="issue_project_id"><%= l(:field_project) %></label> | ||||
|
r11557 | <%= select_tag('issue[project_id]', | ||
|
r13603 | project_tree_options_for_select(@allowed_projects, | ||
:include_blank => ((!@copy || (@projects & @allowed_projects == @projects)) ? l(:label_no_change_option) : false), | ||||
:selected => @target_project), | ||||
|
r9885 | :onchange => "updateBulkEditFrom('#{escape_javascript url_for(:action => 'bulk_edit', :format => 'js')}')") %> | ||
|
r8416 | </p> | ||
<% end %> | ||||
|
r806 | <p> | ||
|
r7559 | <label for="issue_tracker_id"><%= l(:field_tracker) %></label> | ||
|
r11557 | <%= select_tag('issue[tracker_id]', | ||
content_tag('option', l(:label_no_change_option), :value => '') + | ||||
options_from_collection_for_select(@trackers, :id, :name, @issue_params[:tracker_id])) %> | ||||
|
r3165 | </p> | ||
|
r1030 | <% if @available_statuses.any? %> | ||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_status_id'><%= l(:field_status) %></label> | ||
|
r11557 | <%= select_tag('issue[status_id]', | ||
content_tag('option', l(:label_no_change_option), :value => '') + | ||||
options_from_collection_for_select(@available_statuses, :id, :name, @issue_params[:status_id])) %> | ||||
|
r3165 | </p> | ||
|
r820 | <% end %> | ||
|
r9729 | |||
<% if @safe_attributes.include?('priority_id') -%> | ||||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_priority_id'><%= l(:field_priority) %></label> | ||
|
r11557 | <%= select_tag('issue[priority_id]', | ||
content_tag('option', l(:label_no_change_option), :value => '') + | ||||
options_from_collection_for_select(IssuePriority.active, :id, :name, @issue_params[:priority_id])) %> | ||||
|
r3165 | </p> | ||
|
r9729 | <% end %> | ||
<% if @safe_attributes.include?('assigned_to_id') -%> | ||||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_assigned_to_id'><%= l(:field_assigned_to) %></label> | ||
|
r11557 | <%= select_tag('issue[assigned_to_id]', | ||
content_tag('option', l(:label_no_change_option), :value => '') + | ||||
content_tag('option', l(:label_nobody), :value => 'none', :selected => (@issue_params[:assigned_to_id] == 'none')) + | ||||
principals_options_for_select(@assignables, @issue_params[:assigned_to_id])) %> | ||||
|
r2995 | </p> | ||
|
r9729 | <% end %> | ||
<% if @safe_attributes.include?('category_id') -%> | ||||
|
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 => '') + | ||
|
r11557 | content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:category_id] == 'none')) + | ||
options_from_collection_for_select(@categories, :id, :name, @issue_params[:category_id])) %> | ||||
|
r820 | </p> | ||
|
r9729 | <% end %> | ||
<% if @safe_attributes.include?('fixed_version_id') -%> | ||||
|
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 => '') + | ||
|
r11557 | content_tag('option', l(:label_none), :value => 'none', :selected => (@issue_params[:fixed_version_id] == 'none')) + | ||
version_options_for_select(@versions.sort, @issue_params[:fixed_version_id])) %> | ||||
|
r806 | </p> | ||
|
r9729 | <% end %> | ||
|
r806 | |||
|
r3165 | <% @custom_fields.each do |custom_field| %> | ||
|
r11557 | <p> | ||
|
r13661 | <label><%= custom_field.name %></label> | ||
|
r12125 | <%= custom_field_tag_for_bulk_edit('issue', custom_field, @issues, @issue_params[:custom_field_values][custom_field.id.to_s]) %> | ||
|
r11557 | </p> | ||
|
r3165 | <% end %> | ||
|
r13286 | <% if @copy && Setting.link_copied_issue == 'ask' %> | ||
<p> | ||||
<label for='link_copy'><%= l(:label_link_copied_issue) %></label> | ||||
<%= hidden_field_tag 'link_copy', '0' %> | ||||
<%= check_box_tag 'link_copy', '1', params[:link_copy] != 0 %> | ||||
</p> | ||||
<% end %> | ||||
|
r9271 | <% if @copy && @attachments_present %> | ||
|
r11557 | <%= hidden_field_tag 'copy_attachments', '0' %> | ||
|
r9271 | <p> | ||
<label for='copy_attachments'><%= l(:label_copy_attachments) %></label> | ||||
|
r11557 | <%= check_box_tag 'copy_attachments', '1', params[:copy_attachments] != '0' %> | ||
|
r9271 | </p> | ||
<% end %> | ||||
|
r10144 | <% if @copy && @subtasks_present %> | ||
|
r11557 | <%= hidden_field_tag 'copy_subtasks', '0' %> | ||
|
r10144 | <p> | ||
<label for='copy_subtasks'><%= l(:label_copy_subtasks) %></label> | ||||
|
r11557 | <%= check_box_tag 'copy_subtasks', '1', params[:copy_subtasks] != '0' %> | ||
|
r10144 | </p> | ||
<% end %> | ||||
|
r3165 | <%= call_hook(:view_issues_bulk_edit_details_bottom, { :issues => @issues }) %> | ||
</div> | ||||
<div class="splitcontentright"> | ||||
|
r8576 | <% if @safe_attributes.include?('is_private') %> | ||
<p> | ||||
<label for='issue_is_private'><%= l(:field_is_private) %></label> | ||||
<%= select_tag('issue[is_private]', content_tag('option', l(:label_no_change_option), :value => '') + | ||||
|
r11557 | content_tag('option', l(:general_text_Yes), :value => '1', :selected => (@issue_params[:is_private] == '1')) + | ||
content_tag('option', l(:general_text_No), :value => '0', :selected => (@issue_params[:is_private] == '0'))) %> | ||||
|
r8576 | </p> | ||
<% end %> | ||||
|
r9729 | |||
<% if @safe_attributes.include?('parent_issue_id') && @project %> | ||||
|
r5104 | <p> | ||
|
r7559 | <label for='issue_parent_issue_id'><%= l(:field_parent_issue) %></label> | ||
|
r11557 | <%= text_field_tag 'issue[parent_issue_id]', '', :size => 10, :value => @issue_params[:parent_issue_id] %> | ||
|
r11962 | <label class="inline"><%= check_box_tag 'issue[parent_issue_id]', 'none', (@issue_params[:parent_issue_id] == 'none'), :id => nil, :data => {:disables => '#issue_parent_issue_id'} %><%= l(:button_clear) %></label> | ||
|
r5104 | </p> | ||
|
r13587 | <%= javascript_tag "observeAutocompleteField('issue_parent_issue_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project, :scope => Setting.cross_project_subtasks)}')" %> | ||
|
r5104 | <% end %> | ||
|
r9729 | |||
<% if @safe_attributes.include?('start_date') %> | ||||
|
r806 | <p> | ||
|
r7559 | <label for='issue_start_date'><%= l(:field_start_date) %></label> | ||
|
r14993 | <%= date_field_tag 'issue[start_date]', '', :value => @issue_params[:start_date], :size => 10 %><%= calendar_for('issue_start_date') %> | ||
|
r11962 | <label class="inline"><%= check_box_tag 'issue[start_date]', 'none', (@issue_params[:start_date] == 'none'), :id => nil, :data => {:disables => '#issue_start_date'} %><%= l(:button_clear) %></label> | ||
|
r3165 | </p> | ||
|
r9729 | <% end %> | ||
<% if @safe_attributes.include?('due_date') %> | ||||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_due_date'><%= l(:field_due_date) %></label> | ||
|
r14993 | <%= date_field_tag 'issue[due_date]', '', :value => @issue_params[:due_date], :size => 10 %><%= calendar_for('issue_due_date') %> | ||
|
r11962 | <label class="inline"><%= check_box_tag 'issue[due_date]', 'none', (@issue_params[:due_date] == 'none'), :id => nil, :data => {:disables => '#issue_due_date'} %><%= l(:button_clear) %></label> | ||
|
r3165 | </p> | ||
|
r9729 | <% end %> | ||
|
r14908 | <% if @safe_attributes.include?('estimated_hours') %> | ||
<p> | ||||
<label for='issue_estimated_hours'><%= l(:field_estimated_hours) %></label> | ||||
<%= text_field_tag 'issue[estimated_hours]', '', :value => @issue_params[:estimated_hours], :size => 10 %> | ||||
<label class="inline"><%= check_box_tag 'issue[estimated_hours]', 'none', (@issue_params[:estimated_hours] == 'none'), :id => nil, :data => {:disables => '#issue_estimated_hours'} %><%= l(:button_clear) %></label> | ||||
</p> | ||||
<% end %> | ||||
|
r9729 | <% if @safe_attributes.include?('done_ratio') && Issue.use_field_for_done_ratio? %> | ||
|
r3165 | <p> | ||
|
r7559 | <label for='issue_done_ratio'><%= l(:field_done_ratio) %></label> | ||
|
r11557 | <%= select_tag 'issue[done_ratio]', options_for_select([[l(:label_no_change_option), '']] + (0..10).to_a.collect {|r| ["#{r*10} %", r*10] }, @issue_params[:done_ratio]) %> | ||
|
r806 | </p> | ||
|
r2314 | <% end %> | ||
|
r3165 | </div> | ||
|
r806 | </fieldset> | ||
|
r1116 | |||
|
r11402 | <fieldset> | ||
<legend><%= l(:field_notes) %></legend> | ||||
|
r1116 | <%= text_area_tag 'notes', @notes, :cols => 60, :rows => 10, :class => 'wiki-edit' %> | ||
<%= wikitoolbar_for 'notes' %> | ||||
|
r2356 | </fieldset> | ||
|
r806 | </div> | ||
|
r1116 | |||
|
r8416 | <p> | ||
|
r11402 | <% if @copy %> | ||
<%= hidden_field_tag 'copy', '1' %> | ||||
<%= submit_tag l(:button_copy) %> | ||||
<%= submit_tag l(:button_copy_and_follow), :name => 'follow' %> | ||||
<% elsif @target_project %> | ||||
<%= submit_tag l(:button_move) %> | ||||
<%= submit_tag l(:button_move_and_follow), :name => 'follow' %> | ||||
<% else %> | ||||
<%= submit_tag l(:button_submit) %> | ||||
<% end %> | ||||
|
r8416 | </p> | ||
|
r1116 | <% end %> | ||
|
r11962 | |||
<%= javascript_tag do %> | ||||
$(window).load(function(){ | ||||
$(document).on('change', 'input[data-disables]', function(){ | ||||
|
r13045 | if ($(this).prop('checked')){ | ||
|
r11962 | $($(this).data('disables')).attr('disabled', true).val(''); | ||
} else { | ||||
$($(this).data('disables')).attr('disabled', false); | ||||
} | ||||
}); | ||||
}); | ||||
$(document).ready(function(){ | ||||
$('input[data-disables]').trigger('change'); | ||||
}); | ||||
<% end %> | ||||