class ActiveAdmin::Views::AttributesTable

def row(*args, &block)

def row(*args, &block)
  title   = args[0]
  options = args.extract_options!
  options[:class] ||= :row
  @table << tr(options) do
    th do
      header_content_for(title)
    end
    td do
      content_for(block || title)
    end
  end
end