Rails 3 and will_paginate - elegant way, how to get total_pages

Viewed 10533

I am working with will_paginate plugin in Rails 3 and I am trying to get to some variable the count of pages (total_pages).

I thought the total pages is in globally variable @total_pages, or in @option[:total_pages]**, but if I will use this variables in my view, so it don't work.

I know, I can get the total pages of my items in DB table separately by this plugin, but couldn't be so elegant, if I will have that value already stored in some variable by plugin...

So I would like to ask you - exist any way, how to get this value throw will_paginate plugin?

1 Answers
Related