##// END OF EJS Templates
Introduce virtual MenuNodes (#15880)....
Introduce virtual MenuNodes (#15880). They are characterized by having a blank url. they will only be rendered if the user is authorized to see at least one of its children. they render as links which do nothing when clicked. Patch by Jan Schulz-Hofen. git-svn-id: http://svn.redmine.org/redmine/trunk@15501 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9346:5e57a1a9d947
r15119:53710d80fc88
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 %>