[Django]-Django: Multiple inheritance from abstract classes with meta

6👍

Normal rules for Python’s multiple inheritance apply when using it in Django. That means that if multiple parents have the Meta class, only the Meta of the first parent will be used. Others will be ignored.

See this URL for more info
https://docs.djangoproject.com/en/dev/topics/db/models/#multiple-inheritance

Leave a comment