rendering layout from different controller
If an action in one controller leads to a deadly similar template as in another controller, you can just borrow that controller's action template by calling render at the end of your action.
Say your in tags controller in the show action. You can use the template found in/apps/views/lists/index.rhtml
render :template => ''
Say your in tags controller in the show action. You can use the template found in
def show [boring action logic] render :template => 'lists/index' end