##// END OF EJS Templates
Tighened up the gravator CSS in the issue div...
Tighened up the gravator CSS in the issue div git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@1971 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1168:c01c64e9783d
r1969:048fa5bd7773
Show More
destroy.rhtml
15 lines | 739 B | text/html+ruby | RhtmlLexer
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>
<% form_tag({}) do %>
<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>:
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 %>