Hello!
I am creating a site where several page types will have a content area where the editors can add related pages. Each page type is a subclass to a base page type where some data for the related pages view are stored such as an image, header, some text and a link. In the editor view I would like to see all related pages in the content area. The problem I have is that if I render the content area with Html.PropertyFor(page => page.RelatedPagesContentArea) it only works for the pages that has a template at Views/Shared/PageType.cshtml and otherwise displays There's no renderer for 'PageType'. If I add the same template for every pagetype it would work as I want it but I would prefer to be able to add a single template for my base page type instead, is this possible or could it be solved in a different way?
Best,
Marcus