class Admin::ResourceController

def paginated?

and can be used to make display decisions in controller and view
a convenience method that returns true if paginate_models has been called on this controller class
def paginated?
  self.class.paginated == true && params[:pp] != 'all'
end