annotate .svn/pristine/24/243b7e66f51039da5e8cb3fc678989779b4b8dd0.svn-base @ 1298:4f746d8966dd redmine_2.3_integration

Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author Chris Cannam
date Fri, 14 Jun 2013 09:28:30 +0100
parents 622f24f53b42
children
rev   line source
Chris@1295 1 <h2><%= l(:label_confirmation) %></h2>
Chris@1295 2
Chris@1295 3 <%= form_tag({}, :method => :delete) do %>
Chris@1295 4 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id)}.join("\n").html_safe %>
Chris@1295 5 <div class="box">
Chris@1295 6 <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p>
Chris@1295 7 <p>
Chris@1295 8 <label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
Chris@1295 9 <label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
Chris@1295 10 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("#reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
Chris@1295 11 <%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("#todo_reassign").attr("checked", true);' %>
Chris@1295 12 </p>
Chris@1295 13 </div>
Chris@1295 14 <%= submit_tag l(:button_apply) %>
Chris@1295 15 <% end %>