annotate .svn/pristine/ae/aefeab10a4ff6b2a67574515811a4defa07ce6aa.svn-base @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +0100 |
parents |
cbb26bc654de |
children |
|
rev |
line source |
Chris@909
|
1 <h2><%= l(:label_confirmation) %></h2>
|
Chris@909
|
2
|
Chris@909
|
3 <% form_tag do %>
|
Chris@909
|
4 <%= @issues.collect {|i| hidden_field_tag 'ids[]', i.id } %>
|
Chris@909
|
5 <div class="box">
|
Chris@909
|
6 <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p>
|
Chris@909
|
7 <p>
|
Chris@909
|
8 <label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
|
Chris@909
|
9 <label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
|
Chris@909
|
10 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
|
Chris@909
|
11 <%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("todo_reassign").checked=true;' %>
|
Chris@909
|
12 </p>
|
Chris@909
|
13 </div>
|
Chris@909
|
14 <%= submit_tag l(:button_apply) %>
|
Chris@909
|
15 <% end %>
|