##// END OF EJS Templates
Merged r10763 from trunk (#12237)...
Merged r10763 from trunk (#12237) German Translation updated by Daniel Felix. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/branches/2.1-stable@10764 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r10542:1c8510bc800d
Show More
destroy.html.erb
16 lines | 895 B | text/plain | TextLexer
Jean-Philippe Lang
A category with assigned issue can now be deleted. 2 options are proposed:...
r722 <h2><%=l(:label_issue_category)%>: <%=h @category.name %></h2>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag(issue_category_path(@category), :method => :delete) do %>
Jean-Philippe Lang
A category with assigned issue can now be deleted. 2 options are proposed:...
r722 <div class="box">
<p><strong><%= l(:text_issue_category_destroy_question, @issue_count) %></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', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %></label><br />
Jean-Philippe Lang
A category with assigned issue can now be deleted. 2 options are proposed:...
r722 <% if @categories.size > 0 %>
Jean-Philippe Lang
Let the user choose when deleting issues with reported hours (closes #734, #71):...
r1168 <label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
Toshi MARUYAMA
[#9489] corrected labels and translations for reassign forms...
r7576 <%= label_tag "reassign_to_id", l(:description_issue_category_reassign), :class => "hidden-for-sighted" %>
Jean-Philippe Lang
A category with assigned issue can now be deleted. 2 options are proposed:...
r722 <%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
<% end %>
</div>
<%= submit_tag l(:button_apply) %>
<%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %>
<% end %>