<% if searching? %>
<%= t('results_for', :scope => 'shared.admin.search', :query => params[:search]) %>
<% if @comments.any? %>
<%= will_paginate @comments %>
<%= render :partial => "blog_comments",
:collection => @comments %>
<%= will_paginate @comments %>
<% else %>
<%= t('search_no_results', :scope => 'admin') %>
<% end %>
<% else %>
<% if @comments.any? %>
<%= will_paginate @comments %>
<%= render :partial => "sortable_list" %>
<%= will_paginate @comments %>
<% else %>
<%= t('.no_items_yet', :type => action_name.gsub('index', 'new').downcase) %>
<% end %>
<% end %>