Here is another Newbie question on Rails 3: I have a model called "Activity". On the show.html.erb page of an activity, I show the comments that belong to this activity as a partial:
<%= render :partial => @activity.comments %>
How the comments look like is in the _comment.html.erb file.
My question: How can I paginate the comments for an activity with Kaminari?
Thanks very much in advance!