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 ModelForm
s using Content
as a model work fine.
Source:stackexchange.com