Hi Josh, On Friday 19 September 2014 09:39:52 Josh Cartmell wrote: > Hey Melvyn, multi inheritance should work, but as you discovered the order > is important, so while: > class AuthorPage(Author, Page) > doesn't work: > class AuthorPage(Page, Author) > should (I think). >
Yes that's it and I found another caveat: You need to explicitly define the parent_link and set editable=False on it, or the admin form will bail out with a "field not in form" exception. I was hoping to get more input from "the wild" to form a doc PR. -- Melvyn Sopacua -- You received this message because you are subscribed to the Google Groups "Mezzanine Users" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
