I have a Category model, which has many Products.
I would like to add a link in the Category index page that links to a prefiltered version of the product index. Something like:
link_to "View Products in This Category", admin_products(:product_id => self.id)
but can’t seem to find any clear documentation on how to do that.
1 Answer