From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 11:48:07 +0000 (+0000) Subject: rename .rhtml to .html.erb of app/views/projects/settings/_issue_categories.rhtml. X-Git-Tag: 1.3.0~981 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=80cc58b531666f40a622694868f8232bb53f712a;p=redmine.git rename .rhtml to .html.erb of app/views/projects/settings/_issue_categories.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@6982 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- diff --git a/app/views/projects/settings/_issue_categories.html.erb b/app/views/projects/settings/_issue_categories.html.erb new file mode 100644 index 000000000..95121108a --- /dev/null +++ b/app/views/projects/settings/_issue_categories.html.erb @@ -0,0 +1,27 @@ +<% if @project.issue_categories.any? %> + + + + + + + +<% for category in @project.issue_categories %> + <% unless category.new_record? %> + + + + + + <% end %> +<% end %> + +
<%= l(:label_issue_category) %><%= l(:field_assigned_to) %>
<%=h(category.name) %><%=h(category.assigned_to.name) if category.assigned_to %> + <%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %> + <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %> +
+<% else %> +

<%= l(:label_no_data) %>

+<% end %> + +

<%= link_to_if_authorized l(:label_issue_category_new), :controller => 'issue_categories', :action => 'new', :project_id => @project %>

diff --git a/app/views/projects/settings/_issue_categories.rhtml b/app/views/projects/settings/_issue_categories.rhtml deleted file mode 100644 index 95121108a..000000000 --- a/app/views/projects/settings/_issue_categories.rhtml +++ /dev/null @@ -1,27 +0,0 @@ -<% if @project.issue_categories.any? %> - - - - - - - -<% for category in @project.issue_categories %> - <% unless category.new_record? %> - - - - - - <% end %> -<% end %> - -
<%= l(:label_issue_category) %><%= l(:field_assigned_to) %>
<%=h(category.name) %><%=h(category.assigned_to.name) if category.assigned_to %> - <%= link_to_if_authorized l(:button_edit), { :controller => 'issue_categories', :action => 'edit', :id => category }, :class => 'icon icon-edit' %> - <%= link_to_if_authorized l(:button_delete), {:controller => 'issue_categories', :action => 'destroy', :id => category}, :method => :post, :class => 'icon icon-del' %> -
-<% else %> -

<%= l(:label_no_data) %>

-<% end %> - -

<%= link_to_if_authorized l(:label_issue_category_new), :controller => 'issue_categories', :action => 'new', :project_id => @project %>