aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/comments/index.html.erb
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/admin/blog/comments/index.html.erb')
-rw-r--r--app/views/admin/blog/comments/index.html.erb35
1 files changed, 0 insertions, 35 deletions
diff --git a/app/views/admin/blog/comments/index.html.erb b/app/views/admin/blog/comments/index.html.erb
deleted file mode 100644
index aaec4ae..0000000
--- a/app/views/admin/blog/comments/index.html.erb
+++ /dev/null
@@ -1,35 +0,0 @@
-<%= render :partial => '/admin/blog/submenu' %>
-<div id='records'>
- <% if searching? %>
- <h2><%= t('results_for', :scope => 'shared.admin.search', :query => params[:search]) %></h2>
- <% if @blog_comments.any? %>
- <%=# will_paginate @blog_comments
- %>
-
- <ul>
- <%= render :partial => "blog_comments",
- :collection => @blog_comments %>
- </ul>
-
- <%=# will_paginate @blog_comments
- %>
- <% else %>
- <p><%= t('search_no_results', :scope => 'admin') %></p>
- <% end %>
- <% else %>
- <% if @blog_comments.any? %>
- <%=# will_paginate @blog_comments
- %>
-
- <%= render :partial => "sortable_list" %>
-
- <%=# will_paginate @blog_comments
- %>
- <% else %>
- <h3>
- <%= t('.no_items_yet',
- :type => t(action_name.gsub('index', 'new'), :scope => 'admin.blog.submenu.comments').downcase) %>
- </h3>
- <% end %>
- <% end %>
-</div>