easy way to get a constrained view:
1) create a new controller which inherits from your existing
controller
2) add to new controller conditions_for_collection()
3) when this route works, add a link to your layout (not controller)
<a href="/unresolved_my_models">Unresolved</a>
class UnresolvedMyModelsController < MyModelsController
def conditions_for_collection
"`resolved` = 0"
end
end
If you really need a link *within* your active_scaffold see:
http://www.activescaffold.com/docs/api-action-link, and
look at AS "search" do_search and friends