annotate .svn/pristine/8e/8eb597536121c47bd6dbb41ca2d2a9e203651155.svn-base @ 1298:4f746d8966dd
redmine_2.3_integration
Merge from redmine-2.3 branch to create new branch redmine-2.3-integration
author |
Chris Cannam |
date |
Fri, 14 Jun 2013 09:28:30 +0100 |
parents |
622f24f53b42 |
children |
|
rev |
line source |
Chris@1295
|
1 <h2><%=l(:label_issue_category)%>: <%=h @category.name %></h2>
|
Chris@1295
|
2
|
Chris@1295
|
3 <%= form_tag(issue_category_path(@category), :method => :delete) do %>
|
Chris@1295
|
4 <div class="box">
|
Chris@1295
|
5 <p><strong><%= l(:text_issue_category_destroy_question, @issue_count) %></strong></p>
|
Chris@1295
|
6 <p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %></label><br />
|
Chris@1295
|
7 <% if @categories.size > 0 %>
|
Chris@1295
|
8 <label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
|
Chris@1295
|
9 <%= label_tag "reassign_to_id", l(:description_issue_category_reassign), :class => "hidden-for-sighted" %>
|
Chris@1295
|
10 <%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
|
Chris@1295
|
11 <% end %>
|
Chris@1295
|
12 </div>
|
Chris@1295
|
13
|
Chris@1295
|
14 <%= submit_tag l(:button_apply) %>
|
Chris@1295
|
15 <%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %>
|
Chris@1295
|
16 <% end %>
|