I'm working with Django, and I use my own customized User Class, just like this:
class Company(User):
objects = UserManager()
All works as expected, but in the admin, it shows the name of the class as User, not Company, as shown in this image below:
It's just the tag, all works correctly, but I wanted to know if there's a way to change the tag to Company, not Users. Thanks for helping.