I have code like render @posts to render my posts collection in an index template which the PostsController renders.
Now I have an Admin::PostsController that also should render the collection but when my posts controller renders @posts it looks for the admin/posts/_post.html.erb partial. Do I now have to write the partial path explicity? Is this feature by design or a bug? It doesn't seem to make sense.
featureinstead of bug since it give me flexibility of knowing the fact that the partial for the object define in my controller lies inside the view directory of that controller itself (until explicitly defined though) Correct If I'm wrong – Viren Oct 25 '12 at 17:57