aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog_posts/index.html.erb
diff options
context:
space:
mode:
authorPhilip Arndt <parndt@gmail.com>2010-08-09 19:31:22 +1200
committerPhilip Arndt <parndt@gmail.com>2010-08-09 19:31:22 +1200
commita5fe9225fac33f15e972599132c7f569cc5cf397 (patch)
treef58e7405a03546a37e26f2f1c2694ee12e93fc7d /app/views/admin/blog_posts/index.html.erb
parent30df46503cf3176a37ad08ff50da7fa25b43e662 (diff)
downloadrefinerycms-blog-a5fe9225fac33f15e972599132c7f569cc5cf397.tar.gz
refinerycms-blog-a5fe9225fac33f15e972599132c7f569cc5cf397.tar.bz2
refinerycms-blog-a5fe9225fac33f15e972599132c7f569cc5cf397.zip
Namespaced blog posts under blog/posts to allow for blog/comments and blog/categories
Diffstat (limited to 'app/views/admin/blog_posts/index.html.erb')
-rw-r--r--app/views/admin/blog_posts/index.html.erb43
1 files changed, 0 insertions, 43 deletions
diff --git a/app/views/admin/blog_posts/index.html.erb b/app/views/admin/blog_posts/index.html.erb
deleted file mode 100644
index 0bc14db..0000000
--- a/app/views/admin/blog_posts/index.html.erb
+++ /dev/null
@@ -1,43 +0,0 @@
-<div id='actions'>
- <ul>
- <li>
- <%= render :partial => "/shared/admin/search",
- :locals => {
- :url => admin_blog_posts_url
- } %>
- </li>
- <li>
- <%= link_to t('.create_new'), new_admin_blog_post_url,
- :class => "add_icon" %>
- </li>
- </ul>
-</div>
-<div id='records'>
- <% if searching? %>
- <h2><%= t('admin.search_results_for', :query => params[:search]) %></h2>
- <% if @blog_posts.any? %>
- <%= render :partial => "blog_posts",
- :collection => @blog_posts %>
- <% else %>
- <p><%= t('admin.search_no_results') %></p>
- <% end %>
- <% else %>
- <% if @blog_posts.any? %>
- <%= will_paginate @blog_posts,
- :previous_label => '&laquo;',
- :next_label => '&raquo;' %>
-
- <%= render :partial => "sortable_list" %>
-
- <%= will_paginate @blog_posts,
- :previous_label => '&laquo;',
- :next_label => '&raquo;' %>
- <% else %>
- <p>
- <strong>
- <%= t('.no_items_yet') %>
- </strong>
- </p>
- <% end %>
- <% end %>
-</div> \ No newline at end of file