##// END OF EJS Templates
Raise the height of text custom fields....
Raise the height of text custom fields. git-svn-id: http://svn.redmine.org/redmine/trunk@16252 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r15783:f0c9c0ef23ef
r15870:8e4cb42f8e06
Show More
destroy.html.erb
18 lines | 1.1 KiB | text/plain | TextLexer
Jean-Philippe Lang
Fixes a translation key (#3167)....
r2592 <h2><%= l(:label_confirmation) %></h2>
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({}, :method => :delete) do %>
Jean-Philippe Lang
Removed duplicate element ids....
r13262 <%= @issues.collect {|i| hidden_field_tag('ids[]', i.id, :id => nil)}.join("\n").html_safe %>
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168 <div class="box">
Jean-Philippe Lang
Fixed: %0.2f is rendered as plain text in issues/destroy view (#3167)....
r2593 <p><strong><%= l(:text_destroy_time_entries_question, :hours => number_with_precision(@hours, :precision => 2)) %></strong></p>
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168 <p>
<label><%= radio_button_tag 'todo', 'destroy', true %> <%= l(:text_destroy_time_entries) %></label><br />
<label><%= radio_button_tag 'todo', 'nullify', false %> <%= l(:text_assign_time_entries_to_project) %></label><br />
Jean-Philippe Lang
Don't show the "reassign" option when deleting issues from different projects (#24722)....
r15739 <% if @project %>
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 <label><%= radio_button_tag 'todo', 'reassign', false, :onchange => 'if (this.checked) { $("#reassign_to_id").focus(); }' %> <%= l(:text_reassign_time_entries) %></label>
<%= text_field_tag 'reassign_to_id', params[:reassign_to_id], :size => 6, :onfocus => '$("#todo_reassign").attr("checked", true);' %>
Jean-Philippe Lang
Issue destroy : Reassign time issue autocomplete (#24692)....
r15783 <%= javascript_tag "observeAutocompleteField('reassign_to_id', '#{escape_javascript auto_complete_issues_path(:project_id => @project)}')" %>
Jean-Philippe Lang
Don't show the "reassign" option when deleting issues from different projects (#24722)....
r15739 <% end %>
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168 </p>
</div>
<%= submit_tag l(:button_apply) %>
<% end %>