views:

34

answers:

2

How to create ruby on rails list(index page) like this: 1 | 2 | 3 4 | 5 | 6 7 | 8 | 9 10| 11| and so on.

+1  A: 

The Google query you're looking for is "pagination".

Jules
+1  A: 

You almost certainly want to check out the will_paginate gem.

Sam Phillips