[Django]-Override default User model method

4👍

You might want to look at Django’s Proxy Model concept. They even show an example using User as a base class.

On the other hand, if you are trying to change the actual __unicode__() method in the actual User class, you probably will have to MonkeyPatch it. It’s not difficult, but I’ll leave the specifics as a learning experience for you.

Leave a comment