Browse Subversion Repository
Contents of /trunk/redmine_glossary/app/views/term_categories/destroy.html.erb
Parent Directory
| Revision Log
Revision 82 -
( show annotations)
( download)
Sun Mar 23 19:06:39 2014 UTC
(10 years, 1 month ago)
by myoshida
File size: 817 byte(s)
Fix form unvisible.
<% form_tag .. %> => <%= form_tag .. %>
| 1 |
<h2><%=l(:label_term_category)%>: <%=h @category.name %></h2> |
| 2 |
|
| 3 |
<%= form_tag({}) do %> |
| 4 |
<div class="box"> |
| 5 |
<p><strong><%= l(:text_term_category_destroy_question, :value => @term_count) %></strong></p> |
| 6 |
<p><label><%= radio_button_tag 'todo', 'nullify', true %> <%= l(:text_term_category_destroy_assignments) %></label><br /> |
| 7 |
<% if @categories.size > 0 %> |
| 8 |
<label><%= radio_button_tag 'todo', 'reassign', false %> <%= l(:text_term_category_reassign_to) %></label>: |
| 9 |
<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %></p> |
| 10 |
<% end %> |
| 11 |
<%= hidden_field_tag 'id', @category.id %> |
| 12 |
</div> |
| 13 |
|
| 14 |
<%= submit_tag l(:button_apply) %> |
| 15 |
<%= link_to l(:button_cancel), :controller => 'term_categories', :action => 'index', :project_id => @project %> |
| 16 |
<% end %> |
| 17 |
|
| 18 |
<% html_title(l(:glossary_title)) -%> |
| |