class ActiveAdmin::Comments::Views::Comments

def build_comments

def build_comments
  if @comments.any?
    @comments.each(&method(:build_comment))
    div page_entries_info(@comments).html_safe, class: 'pagination_information'
  else
    build_empty_message
  end
  text_node paginate @comments
  build_comment_form
end