From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 12:16:39 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/issue_categories/destroy.rhtml. X-Git-Tag: 1.3.0~973 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=70e38c9ddac8beb86716fc1f3a4fa9e48b422f6d;p=redmine.git rename .rhtml to .html.erb of app/views/issue_categories/destroy.rhtml. :rhtml and :rxml were finally removed as template handlers at Rails 3.1 RC4. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@6990 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/issue_categories/destroy.html.erb b/app/views/issue_categories/destroy.html.erb new file mode 100644 index 000000000..2b61810e7 --- /dev/null +++ b/app/views/issue_categories/destroy.html.erb @@ -0,0 +1,15 @@ +

<%=l(:label_issue_category)%>: <%=h @category.name %>

+ +<% form_tag({}) do %> +
+

<%= l(:text_issue_category_destroy_question, @issue_count) %>

+


+<% if @categories.size > 0 %> +: +<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %>

+<% end %> +
+ +<%= submit_tag l(:button_apply) %> +<%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %> +<% end %> diff --git a/app/views/issue_categories/destroy.rhtml b/app/views/issue_categories/destroy.rhtml deleted file mode 100644 index 2b61810e7..000000000 --- a/app/views/issue_categories/destroy.rhtml +++ /dev/null @@ -1,15 +0,0 @@ -

<%=l(:label_issue_category)%>: <%=h @category.name %>

- -<% form_tag({}) do %> -
-

<%= l(:text_issue_category_destroy_question, @issue_count) %>

-


-<% if @categories.size > 0 %> -: -<%= select_tag 'reassign_to_id', options_from_collection_for_select(@categories, 'id', 'name') %>

-<% end %> -
- -<%= submit_tag l(:button_apply) %> -<%= link_to l(:button_cancel), :controller => 'projects', :action => 'settings', :id => @project, :tab => 'categories' %> -<% end %>