Scaffolding Results Format

Take a look at the in_groups_of method for your list processing in the view...

@books.in_groups_of(3) do |group|   start row   group.each.do |book|     start column     book.title + '</br>' + book.abstract     end column   end   end row end

or something like that...