annotate app/views/issues/destroy.rhtml @ 1452:d6b9fd02bb89
feature_36_js_refactoring
Deprecated develoment branch.
author |
luisf <luis.figueira@eecs.qmul.ac.uk> |
date |
Fri, 11 Oct 2013 17:01:24 +0100 |
parents |
513646585e45 |
children |
|
rev |
line source |
Chris@0
|
1 <h2><%= l(:label_confirmation) %></h2>
|
Chris@0
|
2
|
Chris@0
|
3 <% form_tag do %>
|
Chris@0
|
4 <%= @issues.collect {|i| hidden_field_tag 'ids[]', i.id } %>
|
Chris@0
|
5 <div class="box">
|
Chris@0
|
6 <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p>
|
Chris@0
|
7 <p>
|
Chris@0
|
8 <label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
|
Chris@0
|
9 <label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
|
Chris@0
|
10 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
|
Chris@0
|
11 <%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("todo_reassign").checked=true;' %>
|
Chris@0
|
12 </p>
|
Chris@0
|
13 </div>
|
Chris@0
|
14 <%= submit_tag l(:button_apply) %>
|
Chris@0
|
15 <% end %>
|