[Answered ]-Django, a model class which inherits abstract model class can be also abstract?

2👍

Yes!

Of course, you can make an abstract base class that inherits from another abstract base class. You just need to remember to explicitly set abstract=True each time.

Models | Django Documentation

Updated links for 2.2 and 3.0

Leave a comment