annotate .svn/pristine/5e/5e37d42ab73a7b90b18f47c2e9486d6d1d7f855f.svn-base @ 1524:82fac3dcf466
redmine-2.5-integration
Fix failure to interpret Javascript when autocompleting members for project
author |
Chris Cannam <chris.cannam@soundsoftware.ac.uk> |
date |
Thu, 11 Sep 2014 10:24:38 +0100 |
parents |
cbb26bc654de |
children |
|
rev |
line source |
Chris@909
|
1 <h2><%=l(:label_issue_category)%>: <%=h @category.name %></h2>
|
Chris@909
|
2
|
Chris@909
|
3 <% form_tag(issue_category_path(@category), :method => :delete) do %>
|
Chris@909
|
4 <div class="box">
|
Chris@909
|
5 <p><strong><%= l(:text_issue_category_destroy_question, @issue_count) %></strong></p>
|
Chris@909
|
6 <p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_issue_category_destroy_assignments) %></label><br />
|
Chris@909
|
7 <% if @categories.size > 0 %>
|
Chris@909
|
8 <label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_issue_category_reassign_to) %></label>:
|
Chris@909
|
9 <%= label_tag "reassign_to_id", l(:description_issue_category_reassign), :class => "hidden-for-sighted" %>
|
Chris@909
|
10 <%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p>
|
Chris@909
|
11 <% end %>
|
Chris@909
|
12 </div>
|
Chris@909
|
13
|
Chris@909
|
14 <%= submit_tag l(:button_apply) %>
|
Chris@909
|
15 <%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %>
|
Chris@909
|
16 <% end %>
|