will_paginate problem

Hi all,

I'm having a bit of a problem with displaying a blog list using the will_paginate helper. My code is:

entries_controller:

def index @entries = Entry.find(:all) @blog_entries = @entries.paginate( :page => params[:page], :per_page => 4,                                            :include => :user,                                            :order => 'topics.updated_at DESC') end

Basically I am trying to display a blog index which is the contents of the Entry table. In my index view I have:

<%= will_paginate @blog_entries %>

But nothing happens when I add more than 4 blog entries. Where am I going wrong?

Thanks

Stephen

I guess this is what you're trying to do:

def index     @blog_entries = Entry.paginate( :page => params[:page], :per_page => 4, :include => :user, :order => 'topics.updated_at ) end