##// END OF EJS Templates
scm: git: backout r8839 (#8857)...
scm: git: backout r8839 (#8857) call "git log" only once instead of per branch in fetching revisions. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9142 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r7761:6f4fb8b8920c
r9022:f0987e4b8f01
Show More
destroy.html.erb
16 lines | 894 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
Resourcified issue categories (#9553)....
r7761 <% 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 %>