[Answer]-Django model inheriting from different models, which each inherit from a single class

1👍

Go abstract with parent models, I’ve successfully written models with this kind of definition:

class Content(ModeratedModel, NullableGenericModel, RatedModel, PicturableModel, PrivacyModel, CommentableModel):
    pass

and ModelForms using Content as a model work fine.

Leave a comment