From 198b135e65bb93e1751647a92e0ad88dec9e4d10 Mon Sep 17 00:00:00 2001 From: Toshi MARUYAMA Date: Thu, 1 Sep 2011 13:53:00 +0000 Subject: rename .rhtml to .html.erb of app/views/issues/_list_simple.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@7011 e93f8b46-1217-0410-a6f0-8f06a7374b81 --- app/views/issues/_list_simple.html.erb | 29 +++++++++++++++++++++++++++++ app/views/issues/_list_simple.rhtml | 29 ----------------------------- 2 files changed, 29 insertions(+), 29 deletions(-) create mode 100644 app/views/issues/_list_simple.html.erb delete mode 100644 app/views/issues/_list_simple.rhtml (limited to 'app') diff --git a/app/views/issues/_list_simple.html.erb b/app/views/issues/_list_simple.html.erb new file mode 100644 index 000000000..1fcb07aee --- /dev/null +++ b/app/views/issues/_list_simple.html.erb @@ -0,0 +1,29 @@ +<% if issues && issues.any? %> +<% form_tag({}) do %> + + + + + + + + + <% for issue in issues %> + + + + + + + <% end %> + +
#<%=l(:field_project)%><%=l(:field_tracker)%><%=l(:field_subject)%>
+ <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %> + <%= link_to(h(issue.id), :controller => 'issues', :action => 'show', :id => issue) %> + <%= link_to_project(issue.project) %><%=h issue.tracker %> + <%= link_to h(truncate(issue.subject, :length => 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>) +
+<% end %> +<% else %> +

<%= l(:label_no_data) %>

+<% end %> diff --git a/app/views/issues/_list_simple.rhtml b/app/views/issues/_list_simple.rhtml deleted file mode 100644 index 1fcb07aee..000000000 --- a/app/views/issues/_list_simple.rhtml +++ /dev/null @@ -1,29 +0,0 @@ -<% if issues && issues.any? %> -<% form_tag({}) do %> - - - - - - - - - <% for issue in issues %> - - - - - - - <% end %> - -
#<%=l(:field_project)%><%=l(:field_tracker)%><%=l(:field_subject)%>
- <%= check_box_tag("ids[]", issue.id, false, :style => 'display:none;') %> - <%= link_to(h(issue.id), :controller => 'issues', :action => 'show', :id => issue) %> - <%= link_to_project(issue.project) %><%=h issue.tracker %> - <%= link_to h(truncate(issue.subject, :length => 60)), :controller => 'issues', :action => 'show', :id => issue %> (<%=h issue.status %>) -
-<% end %> -<% else %> -

<%= l(:label_no_data) %>

-<% end %> -- cgit v1.2.3