aboutsummaryrefslogtreecommitdiffstats
path: root/app/views/admin/blog/categories/index.html.erb
blob: d9ccae60446ace460c558c54d1729525809608c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<%= render :partial => '/admin/blog/submenu' %>
<div id='records'>
  <% if searching? %>
    <h2><%= t('shared.admin.search.results_for', :query => params[:search]) %></h2>
    <% if @blog_categories.any? %>
      <%= render :partial => "blog_categories",
                 :collection => @blog_categories %>
    <% else %>
      <p><%= t('admin.search_no_results') %></p>
    <% end %>
  <% else %>
    <% if @blog_categories.any? %>
      <%= will_paginate @blog_categories,
                        :previous_label => '&laquo;',
                        :next_label => '&raquo;' %>

      <%= render :partial => "sortable_list" %>

      <%= will_paginate @blog_categories,
                        :previous_label => '&laquo;',
                        :next_label => '&raquo;' %>
    <% else %>
      <p>
        <strong>
          <%= t('.no_items_yet', :create => t('admin.blog.submenu.categories.new')) %>
        </strong>
      </p>
    <% end %>
  <% end %>
</div>