You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

destroy.html.erb 596B

123456789101112
  1. <h2><%= l(@enumeration.option_name) %>: <%=h @enumeration %></h2>
  2. <%= form_tag({}, :method => :delete) do %>
  3. <div class="box">
  4. <p><strong><%= l(:text_enumeration_destroy_question, @enumeration.objects_count) %></strong></p>
  5. <p><label for='reassign_to_id'><%= l(:text_enumeration_category_reassign_to) %></label>
  6. <%= select_tag 'reassign_to_id', ("<option>--- #{l(:actionview_instancetag_blank_option)} ---</option>" + options_from_collection_for_select(@enumerations, 'id', 'name')) %></p>
  7. </div>
  8. <%= submit_tag l(:button_apply) %>
  9. <%= link_to l(:button_cancel), enumerations_path %>
  10. <% end %>