Is there any way to wire the .rhtml files in app/views into Rails'' Single Table Inheritance mechanism? So given: class Bar < Foo The STI mechanism is generating the objects correctly when it hydrates them out of the db, but when it goes to rendering pages, it pulls everything from app/views/foo and doesn''t touch app/views/bar. I can of course hook in manual type-checking but if there''s something already in the framework (or easy to add <g>), I''d rather DRO (Don''t Repeat Others!) Thanks!