[Answered ]-Django Models Abstract Base Class – can they be extended across apps?

2👍

Since an abstract base class is not a registered model, it makes absolutely no difference where it lives. It can be in any Python file that can be imported by the models.py files in each app.

Leave a comment