[Django]-Subclassing existing model in Django

3👍

http://scottbarnham.com/blog/2008/08/21/extending-the-django-user-model-with-inheritance/

You need to include the UserManager(). Import the User, UserManager and set the UserManager() to the variable objects in your Person class.

Leave a comment